From 2c6d027e205be9d38435726a65f64d053acae091 Mon Sep 17 00:00:00 2001 From: Cleydyr de Albuquerque Date: Sat, 1 Jun 2024 18:12:13 +0200 Subject: [PATCH] remove for now --- src/main/frontend/package.json | 3 +-- src/main/frontend/webpack.config.js | 6 ------ 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/src/main/frontend/package.json b/src/main/frontend/package.json index 6981278f..0db65624 100644 --- a/src/main/frontend/package.json +++ b/src/main/frontend/package.json @@ -37,7 +37,6 @@ "babel-loader": "^9.1.3", "css-loader": "^7.1.1", "file-loader": "^6.2.0", - "html-webpack-plugin": "^5.6.0", "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "style-loader": "^4.0.0", @@ -46,4 +45,4 @@ "webpack": "^5.91.0", "webpack-cli": "^5.1.4" } -} +} \ No newline at end of file diff --git a/src/main/frontend/webpack.config.js b/src/main/frontend/webpack.config.js index 614c3dcb..849866d8 100644 --- a/src/main/frontend/webpack.config.js +++ b/src/main/frontend/webpack.config.js @@ -1,4 +1,3 @@ -const HtmlWebpackPlugin = require("html-webpack-plugin"); const path = require("path"); module.exports = { @@ -31,9 +30,4 @@ module.exports = { }, ], }, - plugins: [ - new HtmlWebpackPlugin({ - template: "index.html", - }), - ], };