Initial commit

This commit is contained in:
2024-08-21 17:11:06 +03:00
commit 852a79220d
10 changed files with 1624 additions and 0 deletions

20
webpack.config.js Normal file
View File

@@ -0,0 +1,20 @@
const path = require("path");
const { experiments } = require("webpack");
const { library } = require("webpack");
const webpack = require("webpack");
module.exports = {
entry: "./index.js",
output: {
filename: "bundle.js",
path: path.resolve(__dirname, "dist"),
},
plugins: [
new webpack.IgnorePlugin({
checkResource(resource) {
return /.*\/wordlists\/(?!english).*\.json/.test(resource);
},
}),
],
mode: "production",
};