23 lines
430 B
JavaScript
23 lines
430 B
JavaScript
|
const CopyWebpackPlugin = require("copy-webpack-plugin");
|
||
|
const path = require('path');
|
||
|
|
||
|
module.exports = {
|
||
|
entry: "./bootstrap.js",
|
||
|
output: {
|
||
|
path: path.resolve(__dirname, "dist"),
|
||
|
filename: "bootstrap.js",
|
||
|
},
|
||
|
experiments: {
|
||
|
asyncWebAssembly: true
|
||
|
},
|
||
|
plugins: [
|
||
|
new CopyWebpackPlugin({
|
||
|
patterns: [
|
||
|
{
|
||
|
from: path.resolve(__dirname, "index.html")
|
||
|
}
|
||
|
]
|
||
|
})
|
||
|
],
|
||
|
};
|