Match-id-0a5df1caf20a3855a1bc4052117f5835e113fd74
This commit is contained in:
parent
ed8d86f538
commit
be5b864736
|
@ -1,4 +1,5 @@
|
|||
const path = require('path');
|
||||
const webpack = require('webpack');
|
||||
|
||||
const config = {
|
||||
entry: {
|
||||
|
@ -45,6 +46,12 @@ const config = {
|
|||
externals: {
|
||||
'horizon': 'Horizon',
|
||||
},
|
||||
plugins: [
|
||||
new webpack.DefinePlugin({
|
||||
'process.env.NODE_ENV': '"development"',
|
||||
isDev: 'false',
|
||||
}),
|
||||
],
|
||||
};
|
||||
|
||||
module.exports = config;
|
||||
|
|
Loading…
Reference in New Issue