23 lines
454 B
JavaScript
23 lines
454 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",
|
||
|
},
|
||
|
mode: "development",
|
||
|
plugins: [
|
||
|
new CopyWebpackPlugin({ patterns: ['index.html'] })
|
||
|
],
|
||
|
experiments: {
|
||
|
asyncWebAssembly: true,
|
||
|
},
|
||
|
devServer: {
|
||
|
static: {
|
||
|
directory: path.join(__dirname),
|
||
|
},
|
||
|
}
|
||
|
};
|