Prep for addon signing

This commit is contained in:
2025-11-12 15:53:45 -05:00
parent 1eb30b4689
commit 4fc0210529
11 changed files with 356 additions and 10 deletions

View File

@@ -1,4 +1,6 @@
const path = require("path")
const path = require("path");
const { optimize } = require("webpack");
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
module.exports = {
entry: {
@@ -13,8 +15,11 @@ module.exports = {
mode: "none",
watch: false,
watchOptions: {
ignored: '**/node_modules',
},
ignored: '**/node_modules',
},
optimization: {
minimize: false
},
module: {
rules: [
{
@@ -29,5 +34,8 @@ module.exports = {
],
},
],
}
},
plugins: [
new BundleAnalyzerPlugin()
]
}