Add a production release build.

This commit is contained in:
Tom Alexander
2024-01-27 23:18:42 -05:00
parent e881102ade
commit d5020d3f24
6 changed files with 22 additions and 6 deletions

6
webpack.prd.js Normal file
View File

@@ -0,0 +1,6 @@
const { merge } = require("webpack-merge");
const common = require("./webpack.common.js");
module.exports = merge(common, {
mode: "production",
});