From 87a8e4a13745e2ad2ad7e0a4ff22997784936790 Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Wed, 29 Jul 2015 21:08:24 +0930 Subject: [PATCH] Use System.get instead of System.import All of the modules we import should already be loaded, and we don't want to ever attempt to import them anyway because we do not include a Promise polyfill. --- framework/core/views/app.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/views/app.blade.php b/framework/core/views/app.blade.php index 9a4cdfd92..ca467126a 100644 --- a/framework/core/views/app.blade.php +++ b/framework/core/views/app.blade.php @@ -35,7 +35,7 @@ }; @foreach ($bootstrappers as $bootstrapper) - System.import('{{ $bootstrapper }}'); + System.get('{{ $bootstrapper }}'); @endforeach app.boot();