From bd1da1ce5ecae024f23f77cfd4cb3f5f9888f048 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Sat, 13 Jun 2020 23:01:39 +0200 Subject: [PATCH] Comment out Webpack Asset Analyzer plugin, as it cause problems with github actions. --- webpack.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index 7899c38c..59bfd7cd 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -137,7 +137,8 @@ if (Encore.isProduction()) { } if (Encore.isDev()) { - Encore.addPlugin(new BundleAnalyzerPlugin()); + //Only uncomment if needed, as this cause problems with Github actions (job does not finish) + //Encore.addPlugin(new BundleAnalyzerPlugin()); }