CI: deploy to gh-pages (#2)

This commit is contained in:
Matthew Ryan Dillon 2020-09-25 10:29:27 -07:00 committed by GitHub
parent 056471c0eb
commit 0377efebed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 5939 additions and 5 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'])
],
};