js-waku-examples/examples/noise-js/webpack.config.js

20 lines
427 B
JavaScript
Raw Normal View History

2023-01-05 23:56:56 +00:00
const CopyWebpackPlugin = require("copy-webpack-plugin");
const path = require("path");
module.exports = {
entry: "./index.js",
output: {
path: path.resolve(__dirname, "build"),
2023-01-05 23:56:56 +00:00
filename: "index.js",
},
experiments: {
asyncWebAssembly: true,
},
mode: "development",
plugins: [
new CopyWebpackPlugin({
patterns: ["index.html", "favicon.ico", "favicon.png", "manifest.json"],
2023-01-05 23:56:56 +00:00
}),
],
};