Prep for addon signing
This commit is contained in:
@@ -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()
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user