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.
This commit is contained in:
Toby Zerner 2015-07-29 21:08:24 +09:30
parent 6873f77012
commit 87a8e4a137

View File

@ -35,7 +35,7 @@
};
@foreach ($bootstrappers as $bootstrapper)
System.import('{{ $bootstrapper }}');
System.get('{{ $bootstrapper }}');
@endforeach
app.boot();