From 946f4af7fee229e161450b91d2131410e797a236 Mon Sep 17 00:00:00 2001 From: Fabian Binna Date: Fri, 28 Apr 2023 22:31:19 +0200 Subject: [PATCH] Add css and js files --- web/webpack.config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web/webpack.config.js b/web/webpack.config.js index 80ad814..8e7f31f 100644 --- a/web/webpack.config.js +++ b/web/webpack.config.js @@ -9,6 +9,8 @@ module.exports = { }, mode: "development", plugins: [ - new CopyWebpackPlugin(['index.html']) + new CopyWebpackPlugin(['index.html']), + new CopyWebpackPlugin(['bootstrap.bundle.min.js']), + new CopyWebpackPlugin(['bootstrap.min.css']) ], };