Commit 81e62e10 by David Kaltschmidt

Fix freezing browser when loading plugin

- broken since 4d2dd220
- `*` was previously working as a path matcher, but freezes browser when
  used with new cache-busting plugin loader
- changed matcher to be `/*`
parent 9b50c903
...@@ -56,7 +56,7 @@ System.config({ ...@@ -56,7 +56,7 @@ System.config({
css: 'vendor/plugin-css/css.js', css: 'vendor/plugin-css/css.js',
}, },
meta: { meta: {
'*': { '/*': {
esModule: true, esModule: true,
authorization: true, authorization: true,
loader: 'plugin-loader', loader: 'plugin-loader',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment