optimize.ts 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /**
  2. * 此文件作用于 `vite.config.ts` 的 `optimizeDeps.include` 依赖预构建配置项
  3. * 依赖预构建,`vite` 启动时会将下面 include 里的模块,编译成 esm 格式并缓存到 node_modules/.vite 文件夹,页面加载到对应模块时如果浏览器有缓存就读取浏览器缓存,如果没有会读取本地缓存并按需加载
  4. * 尤其当您禁用浏览器缓存时(这种情况只应该发生在调试阶段)必须将对应模块加入到 include里,否则会遇到开发环境切换页面卡顿的问题(vite 会认为它是一个新的依赖包会重新加载并强制刷新页面),因为它既无法使用浏览器缓存,又没有在本地 node_modules/.vite 里缓存
  5. * 温馨提示:如果您使用的第三方库是全局引入,也就是引入到 src/main.ts 文件里,就不需要再添加到 include 里了,因为 vite 会自动将它们缓存到 node_modules/.vite
  6. */
  7. export const include = [
  8. "xlsx",
  9. "dayjs",
  10. "pinia",
  11. "swiper",
  12. "lodash",
  13. "intro.js",
  14. "vue-i18n",
  15. "lodash-es",
  16. "cropperjs",
  17. "jsbarcode",
  18. "sortablejs",
  19. "swiper/vue",
  20. "@vueuse/core",
  21. "vue3-danmaku",
  22. "v-contextmenu",
  23. "vue-pdf-embed",
  24. "lodash-unified",
  25. "china-area-data",
  26. "@faker-js/faker",
  27. "vue-json-pretty",
  28. "@logicflow/core",
  29. "@pureadmin/utils",
  30. "@howdyjs/mouse-menu",
  31. "@logicflow/extension",
  32. "@amap/amap-jsapi-loader",
  33. "el-table-infinite-scroll",
  34. "@wangeditor/editor-for-vue",
  35. "xgplayer/dist/simple_player",
  36. "xgplayer/es/controls/volume",
  37. "vuedraggable/src/vuedraggable",
  38. "xgplayer/es/controls/screenShot",
  39. "xgplayer/es/controls/playbackRate"
  40. ];