2024-01-10 00:30:16 -05:00
|
|
|
const { merge } = require("webpack-merge");
|
|
|
|
const common = require("./webpack.common.js");
|
2024-01-08 23:12:32 -05:00
|
|
|
|
|
|
|
module.exports = merge(common, {
|
2024-01-10 00:30:16 -05:00
|
|
|
mode: "production",
|
2024-01-08 23:12:32 -05:00
|
|
|
});
|