app.constants.ts 520B

123456789
  1. // These constants are injected via webpack environment variables.
  2. // You can add more variables in webpack.common.js or in profile specific webpack.<dev|prod>.js files.
  3. // If you change the values in the webpack config files, you need to re run webpack to update the application
  4. export const VERSION = process.env.VERSION;
  5. export const DEBUG_INFO_ENABLED: boolean = !!process.env.DEBUG_INFO_ENABLED;
  6. export const SERVER_API_URL = process.env.SERVER_API_URL;
  7. export const BUILD_TIMESTAMP = process.env.BUILD_TIMESTAMP;