airboardgame/backend/webpack.production.js

7 lines
153 B
JavaScript
Raw Normal View History

2020-12-11 20:24:33 +01:00
const merge = require("webpack-merge");
const common = require("./webpack.common.js");
module.exports = merge.smart(common, {
mode: "production",
});