diff options
Diffstat (limited to 'www/webpack.config.js')
-rw-r--r-- | www/webpack.config.js | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/www/webpack.config.js b/www/webpack.config.js index 80ad814..6d82e1f 100644 --- a/www/webpack.config.js +++ b/www/webpack.config.js @@ -2,13 +2,13 @@ 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']) - ], + entry: "./bootstrap.js", + output: { + path: path.resolve(__dirname, "dist"), + filename: "bootstrap.js", + }, + mode: "development", + plugins: [ + new CopyWebpackPlugin(['index.html', 'bulma.min.css']) + ], }; |