CI: deploy to gh-pages (#2)
This commit is contained in:
parent
056471c0eb
commit
0377efebed
9 changed files with 5939 additions and 5 deletions
14
www/webpack.config.js
Normal file
14
www/webpack.config.js
Normal 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'])
|
||||
],
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue