I'm using Angular 4 for my project. Here my scenario is to use Angular 4 without any server(even npm lite-server).
These are the steps which I followed to test the project without any server.
- Built the app using "ng build --prod", to get the compiled file in dist folder.
- Compiled successfully
- now I moved to dist folder and opend the index.html in browser, but now my anuglar 4 app wasn't working
- But it is working fine, if I execute "ng server" command,which start the npm lite-server.
My requirement is, I want use Angular 4 app without starting any server.