Created
February 6, 2016 19:47
-
-
Save somebody32/cbe1b3f8dc9e591e9833 to your computer and use it in GitHub Desktop.
Removing mini apps from index.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Backbone from 'backbone'; | |
import $ from 'jquery'; | |
import Router from './router'; | |
$(() => { | |
new Router(); | |
- require.ensure([], require => { | |
- const AboutApp = require('./apps/about/').default; | |
- AboutApp(); | |
- }); | |
- require.ensure([], require => { | |
- const HeavyApp = require('./apps/heavy/').default; | |
- HeavyApp(); | |
- }); | |
Backbone.history.start(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment