vite.config.ts 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. import dayjs from "dayjs";
  2. import { resolve } from "path";
  3. import pkg from "./package.json";
  4. import { warpperEnv } from "./build";
  5. import { getPluginsList } from "./build/plugins";
  6. import { UserConfigExport, ConfigEnv, loadEnv } from "vite";
  7. /** 当前执行node命令时文件夹的地址(工作目录) */
  8. const root: string = process.cwd();
  9. /** 路径查找 */
  10. const pathResolve = (dir: string): string => {
  11. return resolve(__dirname, ".", dir);
  12. };
  13. /** 设置别名 */
  14. const alias: Record<string, string> = {
  15. "@": pathResolve("src"),
  16. "@build": pathResolve("build")
  17. };
  18. const { dependencies, devDependencies, name, version } = pkg;
  19. const __APP_INFO__ = {
  20. pkg: { dependencies, devDependencies, name, version },
  21. lastBuildTime: dayjs(new Date()).format("YYYY-MM-DD HH:mm:ss")
  22. };
  23. export default ({ command, mode }: ConfigEnv): UserConfigExport => {
  24. const { VITE_CDN, VITE_PORT, VITE_COMPRESSION, VITE_PUBLIC_PATH } =
  25. warpperEnv(loadEnv(mode, root));
  26. return {
  27. base: VITE_PUBLIC_PATH,
  28. root,
  29. resolve: {
  30. alias
  31. },
  32. // 服务端渲染
  33. server: {
  34. // 是否开启 https
  35. https: false,
  36. // 端口号
  37. port: VITE_PORT,
  38. host: "0.0.0.0",
  39. // 本地跨域代理 https://cn.vitejs.dev/config/server-options.html#server-proxy
  40. proxy: {}
  41. },
  42. plugins: getPluginsList(command, VITE_CDN, VITE_COMPRESSION),
  43. optimizeDeps: {
  44. include: ["pinia", "vue-i18n", "lodash-es", "@vueuse/core", "dayjs"],
  45. exclude: ["@pureadmin/theme/dist/browser-utils"]
  46. },
  47. build: {
  48. sourcemap: false,
  49. // 消除打包大小超过500kb警告
  50. chunkSizeWarningLimit: 4000,
  51. rollupOptions: {
  52. input: {
  53. index: pathResolve("index.html")
  54. },
  55. // 静态资源分类打包
  56. output: {
  57. chunkFileNames: "static/js/[name]-[hash].js",
  58. entryFileNames: "static/js/[name]-[hash].js",
  59. assetFileNames: "static/[ext]/[name]-[hash].[ext]"
  60. }
  61. }
  62. },
  63. define: {
  64. __INTLIFY_PROD_DEVTOOLS__: false,
  65. __APP_INFO__: JSON.stringify(__APP_INFO__)
  66. }
  67. };
  68. };