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 `/*`
pull/12585/head
David Kaltschmidt 7 years ago
parent 9b50c9038b
commit 81e62e1051
  1. 2
      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',

Loading…
Cancel
Save