We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
问题: angular的包太大了,导致加载时间很长,怎么优化呢?
ngx-admin
The text was updated successfully, but these errors were encountered:
No branches or pull requests
1. 懒加载 + build 优化
模块配置懒加载:把应用分成很多个小模块,每次只加载对应的模块。
模块配置预加载:加载完懒加载模块之后再把其他模块加载进来。
aot优化
2. web容器开启gzip
3. 参考网站ngx-admin进行优化
ngx-admin
The text was updated successfully, but these errors were encountered: