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