rsswx / apps /web /src /utils /env.ts
xmarstt's picture
Upload 91 files
c349309 verified
raw
history blame contribute delete
213 Bytes
export const isProd = import.meta.env.PROD;
export const serverOriginUrl = isProd
? window.__WEWE_RSS_SERVER_ORIGIN_URL__
: import.meta.env.VITE_SERVER_ORIGIN_URL;
export const appVersion = __APP_VERSION__;