Newer
Older
// These constants are injected via webpack environment variables.
// You can add more variables in webpack.common.js or in profile specific webpack.<dev|prod>.js files.
// If you change the values in the webpack config files, you need to re run webpack to update the application
export const VERSION = process.env.VERSION;
export const DEBUG_INFO_ENABLED: boolean = !!process.env.DEBUG_INFO_ENABLED;
export const color = {
green:'#58ca13',
yellow:'#ffc029',
red:'#f44e4e',
gray:'#bfbfbf',
black:'#6064'