Moving all the theme files out of the theme directory

This commit is contained in:
Dan 2025-12-08 13:52:23 +00:00
parent 23369f4ace
commit 3006bff575
40 changed files with 477 additions and 11 deletions

11
webpack/prod.config.js Normal file
View file

@ -0,0 +1,11 @@
const baseConfig = require('./base.config.js');
const { merge } = require('webpack-merge');
const TerserPlugin = require("terser-webpack-plugin");
module.exports = merge(baseConfig, {
mode: 'production',
optimization: {
minimize: true,
minimizer: [new TerserPlugin()],
},
});