123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- import dayjs from "dayjs";
- import { resolve } from "path";
- import pkg from "./package.json";
- import { warpperEnv } from "./build";
- import { getPluginsList } from "./build/plugins";
- import { UserConfigExport, ConfigEnv, loadEnv } from "vite";
- /** 当前执行node命令时文件夹的地址(工作目录) */
- const root: string = process.cwd();
- /** 路径查找 */
- const pathResolve = (dir: string): string => {
- return resolve(__dirname, ".", dir);
- };
- /** 设置别名 */
- const alias: Record<string, string> = {
- "@": pathResolve("src"),
- "@build": pathResolve("build")
- };
- const { dependencies, devDependencies, name, version } = pkg;
- const __APP_INFO__ = {
- pkg: { dependencies, devDependencies, name, version },
- lastBuildTime: dayjs(new Date()).format("YYYY-MM-DD HH:mm:ss")
- };
- export default ({ command, mode }: ConfigEnv): UserConfigExport => {
- const { VITE_CDN, VITE_PORT, VITE_COMPRESSION, VITE_PUBLIC_PATH } =
- warpperEnv(loadEnv(mode, root));
- return {
- base: VITE_PUBLIC_PATH,
- root,
- resolve: {
- alias
- },
- // 服务端渲染
- server: {
- // 是否开启 https
- https: false,
- // 端口号
- port: VITE_PORT,
- host: "0.0.0.0",
- // 本地跨域代理 https://cn.vitejs.dev/config/server-options.html#server-proxy
- proxy: {}
- },
- plugins: getPluginsList(command, VITE_CDN, VITE_COMPRESSION),
- // https://cn.vitejs.dev/config/dep-optimization-options.html#dep-optimization-options
- optimizeDeps: {
- /**
- * 依赖预构建,vite启动时会将下面 include 里的模块,编译成 esm 格式并缓存到 node_modules/.vite 文件夹,页面加载到对应模块时如果浏览器有缓存就读取浏览器缓存,如果没有会读取本地缓存并按需加载
- * 尤其当您禁用浏览器缓存时(这种情况只应该发生在调试阶段)必须将对应模块加入到 include里,否则会遇到开发环境切换页面卡顿的问题(vite 会认为它是一个新的依赖包会重新加载并强制刷新页面),因为它既无法使用浏览器缓存,又没有在本地 node_modules/.vite 里缓存
- * 温馨提示:如果您使用的第三方库是全局引入,也就是引入到 src/main.ts 文件里,就不需要再添加到 include 里了,因为 vite 会自动将它们缓存到 node_modules/.vite
- */
- include: [
- "xlsx",
- "dayjs",
- "pinia",
- "swiper",
- "intro.js",
- "vue-i18n",
- "lodash",
- "lodash-es",
- "cropperjs",
- "jsbarcode",
- "sortablejs",
- "swiper/vue",
- "@vueuse/core",
- "vue3-danmaku",
- "v-contextmenu",
- "vue-pdf-embed",
- "lodash-unified",
- "china-area-data",
- "@faker-js/faker",
- "vue-json-pretty",
- "@logicflow/core",
- "@pureadmin/utils",
- "@howdyjs/mouse-menu",
- "@logicflow/extension",
- "@amap/amap-jsapi-loader",
- "el-table-infinite-scroll",
- "@wangeditor/editor-for-vue",
- "xgplayer/dist/simple_player",
- "xgplayer/es/controls/volume",
- "vuedraggable/src/vuedraggable",
- "xgplayer/es/controls/screenShot",
- "xgplayer/es/controls/playbackRate"
- ],
- exclude: ["@pureadmin/theme/dist/browser-utils"]
- },
- build: {
- sourcemap: false,
- // 消除打包大小超过500kb警告
- chunkSizeWarningLimit: 4000,
- rollupOptions: {
- input: {
- index: pathResolve("index.html")
- },
- // 静态资源分类打包
- output: {
- chunkFileNames: "static/js/[name]-[hash].js",
- entryFileNames: "static/js/[name]-[hash].js",
- assetFileNames: "static/[ext]/[name]-[hash].[ext]"
- }
- }
- },
- define: {
- __INTLIFY_PROD_DEVTOOLS__: false,
- __APP_INFO__: JSON.stringify(__APP_INFO__)
- }
- };
- };
|