Apologies for a very newb question, but can a project created with the Angular-CLI (which seems to only be able to run with ng serve
) be run instead with lite-server
, as it currently is on Angular's own Quickstart page?
As a beginner I appreciate the simplicity of lite-server
in that doesn't seem to do all this smoke and mirrors with bundling files together in very opaque ways in the way that ng serve
seems to do with Webpack. I'm sure there reasons for it, but it's not helping me to understand what's going on under the hood at this point as I'm just getting my feet wet.
Is there any simple way to retrofit what the CLI spits out to run with lite-server
, or should I just continue to start new projects by cloning the Quickstart rather than using the CLI tool?
Thanks for any insight!