From 81e62e105143f9493169d86a20bc2dd0766dab38 Mon Sep 17 00:00:00 2001 From: David Kaltschmidt Date: Thu, 12 Jul 2018 13:16:41 +0200 Subject: [PATCH] Fix freezing browser when loading plugin - broken since 4d2dd2209 - `*` was previously working as a path matcher, but freezes browser when used with new cache-busting plugin loader - changed matcher to be `/*` --- public/app/features/plugins/plugin_loader.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/plugins/plugin_loader.ts b/public/app/features/plugins/plugin_loader.ts index 20023e27b5c..641b5100703 100644 --- a/public/app/features/plugins/plugin_loader.ts +++ b/public/app/features/plugins/plugin_loader.ts @@ -56,7 +56,7 @@ System.config({ css: 'vendor/plugin-css/css.js', }, meta: { - '*': { + '/*': { esModule: true, authorization: true, loader: 'plugin-loader',