From fdd0483c9f4f0dc98d9450d6284cfcf2bf9fe33e Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Sun, 4 Aug 2019 11:32:42 +0200 Subject: [PATCH] Allow localhost development iframe sources --- src/js/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/js/index.js b/src/js/index.js index a0b571a2d..3d5c51372 100644 --- a/src/js/index.js +++ b/src/js/index.js @@ -95,7 +95,8 @@ app.config(function ($sceDelegateProvider) { // Allow same origin resource loads. 'self', // Allow loading from our assets domain. Notice the difference between * and **. - 'https://*cloudron.io/**' + 'https://*cloudron.io/**', + 'http://localhost:5000/**' ]); });