This commit is contained in:
Robin Appelman 2021-07-24 23:00:49 +02:00
commit df7394a816
23 changed files with 6670 additions and 0 deletions

14
www/webpack.config.js Normal file
View file

@ -0,0 +1,14 @@
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(['index.html'])
],
};