Просмотр исходного кода

plugins: fix for loading external plugins behind auth proxy, fixes #9509

Torkel Ödegaard 8 лет назад
Родитель
Сommit
e19b4a9291
1 измененных файлов с 4 добавлено и 1 удалено
  1. 4 1
      public/app/features/plugins/plugin_loader.ts

+ 4 - 1
public/app/features/plugins/plugin_loader.ts

@@ -40,7 +40,10 @@ System.config({
     css: 'vendor/plugin-css/css.js'
   },
   meta: {
-    '*': {esModule: true}
+    '*': {
+      esModule: true,
+      authorization: true,
+    }
   }
 });