-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(example): Added minimal example
- Loading branch information
1 parent
441ba7a
commit a8ee08f
Showing
10 changed files
with
5,130 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,4 @@ node_modules | |
tsconfig.json | ||
rollup.config.js | ||
stats.html | ||
examples |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
run `npm install` then `npm start` |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<html> | ||
<head> | ||
<script src="//unpkg.com/angular@1.6.4/angular.js"></script> | ||
<script src="//unpkg.com/reflect-metadata"></script> | ||
<script src="//unpkg.com/zone.js"></script> | ||
</head> | ||
<body> | ||
<!-- the app will fill this ui-view --> | ||
<ui-view></ui-view> | ||
|
||
<!-- load webpack bundle in body tag after document.body is ready --> | ||
<script src="_bundles/app.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.