https://github.com/josketres/angular-hybrid-aot-lazy-loading
Demonstration of a hybrid app with aot, code-splitting and lazy-loading
https://github.com/josketres/angular-hybrid-aot-lazy-loading
angular angularjs aot-compilation lazy-loading ngupgrade
Last synced: about 1 month ago
JSON representation
Demonstration of a hybrid app with aot, code-splitting and lazy-loading
- Host: GitHub
- URL: https://github.com/josketres/angular-hybrid-aot-lazy-loading
- Owner: josketres
- License: mit
- Created: 2018-04-10T19:59:00.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-12T18:21:59.000Z (about 8 years ago)
- Last Synced: 2025-10-19T19:30:04.572Z (8 months ago)
- Topics: angular, angularjs, aot-compilation, lazy-loading, ngupgrade
- Language: TypeScript
- Size: 94.7 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# angular-hybrid-aot-lazy-loading
Demonstration of a hybrid app with aot, code-splitting and lazy-loading
```sh
# build
npm install
ng build --aot
# take a look at the dist/vendor.bundle.js
# make sure that the compiler.js is not included.
npx source-map-explorer dist/vendor.bundle.js
# now run it
ng serve --target=production --open
```