12 lines
246 B
JavaScript
12 lines
246 B
JavaScript
|
import merge from "webpack-merge"
|
||
|
import webpackCommon from "./webpack.common"
|
||
|
|
||
|
prodConfig = {
|
||
|
mode: "production",
|
||
|
output: {
|
||
|
filename: "[name].js",
|
||
|
path: "./public"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default merge(webpackCommon, prodConfig);
|