File size: 311 Bytes
ca668ce d193c91 |
1 2 3 4 5 6 7 8 9 10 11 |
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__;
export const enabledAuthCode =
window.__WEWE_RSS_ENABLED_AUTH_CODE__ === false ? false : true;
|