I want to use Vite for creating an Angular app with basic routing, minimal options, and no testing files and open in port 5000
Searched all over and not got.
I want to use Vite for creating an Angular app with basic routing, minimal options, and no testing files and open in port 5000
Searched all over and not got.
Vite does not support Angular and vice-versa. The reason being, that the Angular CLI does more than the React CLI, for example, and also uses its own compiler called ngc
.
Yeah it's true that there is no default support for vite in angular project, and not to forget it is because of the fact as @forbiddencodding has mentioned that angular needs the the custom angular compiler ngc
to compile its templates and other features. But how ever you can play around while starting up an angular project and can use vite. Click here to read the whole article.