What if the compilation speed of angular development is too slow?

same computer configuration
it"s fast to use vue or react, but it takes half a day to compile even if you change the css style a little bit at angular!
is there any way to make the compilation faster?

Mar.08,2022

take out some third-party code separately to generate a direct reference to the file. Do not import, in the code, for example:

use

<script type='text/javascript' src='http..../jquery.js'></script>

instead of

import './jquery'
Menu