From 451beaae91d1418708374897c868213fe8688988 Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Sun, 24 Nov 2024 13:09:53 +0100 Subject: [PATCH] Webpack: update sourcemap exclusion list --- webpack.config.cjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webpack.config.cjs b/webpack.config.cjs index 4951cd18f7bb..7580fdd1eb3d 100644 --- a/webpack.config.cjs +++ b/webpack.config.cjs @@ -88,7 +88,8 @@ const sharedConfig = { test: /\.m?js$/, use: ['source-map-loader'], // html-to-image and react-blurhash reference source maps but don't currently ship with any. - exclude: /node_modules\/html-to-image|node_modules\/react-blurhash/, + exclude: + /node_modules\/html-to-image|node_modules\/react-blurhash|node_modules\/stylis-plugin-rtl/, enforce: 'pre', resolve: { fullySpecified: false,