From d063661a690ea5117a052e79c6f8dfdcfb357187 Mon Sep 17 00:00:00 2001
From: Frank Sauerburger <frank@sauerburger.com>
Date: Sun, 3 Jan 2021 22:58:07 +0100
Subject: [PATCH] Fix webpack css output name

---
 uhepp-js/webpack.config.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/uhepp-js/webpack.config.js b/uhepp-js/webpack.config.js
index 4a050e1..f8456f3 100644
--- a/uhepp-js/webpack.config.js
+++ b/uhepp-js/webpack.config.js
@@ -20,7 +20,7 @@ module.exports = {
       // Options similar to the same options in webpackOptions.output
       // all options are optional
       filename: '[name].css',
-      chunkFilename: '[id].css',
+      chunkFilename: '[name].css',
       ignoreOrder: false, // Enable to remove warnings about conflicting order
     }),
   ],
-- 
GitLab