2017-05-16 17:00:56 +02:00
|
|
|
/**
|
|
|
|
* Constant Replacer
|
|
|
|
*/
|
|
|
|
|
|
|
|
import * as webpack from 'webpack';
|
|
|
|
|
|
|
|
import version from '../../src/version';
|
|
|
|
const constants = require('../../src/const.json');
|
|
|
|
|
2017-11-03 09:46:42 +01:00
|
|
|
export default lang => new webpack.DefinePlugin({
|
2017-05-16 17:00:56 +02:00
|
|
|
VERSION: JSON.stringify(version),
|
2017-11-03 09:46:42 +01:00
|
|
|
LANG: JSON.stringify(lang),
|
2017-05-16 17:00:56 +02:00
|
|
|
THEME_COLOR: JSON.stringify(constants.themeColor)
|
|
|
|
});
|