7 lines
153 B
JavaScript
7 lines
153 B
JavaScript
|
const merge = require("webpack-merge");
|
||
|
const common = require("./webpack.common.js");
|
||
|
|
||
|
module.exports = merge.smart(common, {
|
||
|
mode: "production",
|
||
|
});
|