Skip to content

Commit

Permalink
Readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Vlado Tesanovic authored and Vlado Tesanovic committed May 22, 2016
1 parent 3df6bb9 commit 55783b9
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,30 @@ npm install
npm start

# Applciation url: http://localhost:3000
```

## Development
Uncomment in public/index.html:

```html
<script src="js/systemjs.config.js"></script>
<script>
System.config({
defaultJSExtensions: true,
packages: {
app: {
format: 'register',
defaultExtension: 'js'
}
}
});
System.import('main')
.then(null, console.error.bind(console));
</script>
```

Comment out
```html
<!-- Production mod -->
<script src="js/bundle.min.js"></script>
```

0 comments on commit 55783b9

Please sign in to comment.