Added some groundwork for showcase files.

This commit is contained in:
2022-04-17 18:47:24 -05:00
parent cf220fd189
commit e5996b5cb8
14 changed files with 596 additions and 36 deletions

View File

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