Browse Source

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 `/*`
David Kaltschmidt 7 years ago
parent
commit
81e62e1051
1 changed files with 1 additions and 1 deletions
  1. 1 1
      public/app/features/plugins/plugin_loader.ts

+ 1 - 1
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',