From 0b4f5e998ee2ae8d74c513a38ba83239fb67705a Mon Sep 17 00:00:00 2001 From: Panagiotis Papadopoulos Date: Fri, 21 Feb 2025 22:41:47 +0100 Subject: [PATCH] webpack: add filename option to miniCssExtractPlugin commented out for now, because it currently does not make sense yet. This will be working, when I change webpack output to the "build" folder instead of the current (messy) way, where it outputs into src/public/app-dist --- webpack.config.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webpack.config.ts b/webpack.config.ts index a6c01424c..b37451f5e 100644 --- a/webpack.config.ts +++ b/webpack.config.ts @@ -23,7 +23,10 @@ const config: Configuration = { filename: "[name].js" }, plugins: [ - new miniCssExtractPlugin() + new miniCssExtractPlugin({ + // TriliumNextTODO: enable this, once webpack build outputs into the "build" folder, instead of "src/public/app-dist" folder => @pano9000 + //filename: "../stylesheets/[name].css" + }) ], module: { rules: [