Skip to content

Instantly share code, notes, and snippets.

@Wobbley
Created December 31, 2015 13:32
Show Gist options
  • Save Wobbley/9dc33422e6ea1cf7d96e to your computer and use it in GitHub Desktop.
Save Wobbley/9dc33422e6ea1cf7d96e to your computer and use it in GitHub Desktop.
<!-- 2. Configure SystemJS -->
<script>
System.config({
packages: {
app: {
format: 'register',
defaultExtension: 'js'
},
"node_modules/ng2-bootstrap": {
"defaultExtension": "js"
}
},
paths: {
"ng2-bootstrap/ng2-bootstrap": "node_modules/ng2-bootstrap/ng2-bootstrap"
}
});
System.import('app/boot')
.then(null, console.error.bind(console));
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment