This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
app.constants.ts 459 B
Newer Older
Michael Breu's avatar
Michael Breu committed
// These constants are injected via webpack DefinePlugin variables.
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
// 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

Michael Breu's avatar
Michael Breu committed
declare const __DEBUG_INFO_ENABLED__: boolean;
declare const __VERSION__: string;

export const VERSION = __VERSION__;
export const DEBUG_INFO_ENABLED = __DEBUG_INFO_ENABLED__;