12 lines
256 B
JavaScript
12 lines
256 B
JavaScript
|
const webpack = require("webpack")
|
||
|
const merge = require('webpack-merge');
|
||
|
const common = require('./webpack.common.js');
|
||
|
|
||
|
module.exports = merge(common, {
|
||
|
plugins: [
|
||
|
new webpack.DefinePlugin({
|
||
|
ENV: JSON.stringify("production")
|
||
|
})
|
||
|
]
|
||
|
});
|