Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
vite在启动时会扫描依赖并进行预构建,但是 unplugin 插件导致 element-plus 在启动时需要加载大量的scss样式文件,引发多次依赖预构建,拖慢启动速度。
![image](https://user-images.githubusercontent.com/54239670/183912378-e3532057-a3f1-481a-ac85-e34a76e20981.png)
![image](https://user-images.githubusercontent.com/54239670/183912655-cbda9b83-d3f5-417a-b9d9-f5229b30eec9.png)
可以看到 依赖预构建和css处理耗费了很多时间。在开发环境取消 element-plus 样式按需加载,可以加快开发环境预加载速度。