123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- import vue from '@vitejs/plugin-vue'
- import { resolve } from 'path'
- import { defineConfig, loadEnv, ConfigEnv } from 'vite'
- import vueSetupExtend from 'vite-plugin-vue-setup-extend'
- import vueJsx from '@vitejs/plugin-vue-jsx'
- import AutoImport from 'unplugin-auto-import/vite'
- import compression from 'vite-plugin-compression'
- import Components from 'unplugin-vue-components/vite'
- import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
- import { Plugin as importToCDN } from "vite-plugin-cdn-import";
- const pathResolve = (dir: string) => {
- return resolve(__dirname, '.', dir)
- }
- const alias: Record<string, string> = {
- '/@': pathResolve('./src/'),
- '@views': pathResolve('./src/views'),
- 'vue-i18n': 'vue-i18n/dist/vue-i18n.cjs.js',
- }
- const viteConfig = defineConfig((mode: ConfigEnv) => {
- const env = loadEnv(mode.mode, process.cwd())
- return {
- plugins: [
- vue(),
- vueJsx(),
- vueSetupExtend(),
- AutoImport({
- imports: ['vue', 'vue-router', 'pinia'],
- // resolvers: [ElementPlusResolver()],
- }),
- compression({
- algorithm: 'gzip', // 使用 gzip 压缩
- ext: '.gz', // 输出的文件扩展名
- threshold: 10240, // 只有大小大于该值的资源会被压缩(默认 10KB)
- deleteOriginFile: false, // 是否删除原始未压缩的文件
- }),
- // Components({
- // resolvers: [ElementPlusResolver()],
- // }),
- importToCDN({
- modules: [
- // {
- // name: "vue",
- // var: "Vue",
- // path: "https://cdn.jsdelivr.net/npm/vue@3.2.45/dist/vue.global.js"
- // },
- {
- name: "ant-design-vue",
- var: "Antd",
- path: "https://cdnjs.cloudflare.com/ajax/libs/ant-design-vue/4.2.1/antd.js"
- }]
- }
- )
- ],
- root: process.cwd(),
- resolve: { alias },
- base: mode.command === 'serve' ? './' : env.VITE_PUBLIC_PATH,
- optimizeDeps: {
- include: ['element-plus/es/locale/lang/zh-cn', 'element-plus/es/locale/lang/en', 'element-plus/es/locale/lang/zh-tw'],
- },
- server: {
- host: '0.0.0.0',
- port: env.VITE_PORT as unknown as number,
- open: false,
- hmr: true,
- proxy: {
- '/gitee': {
- target: 'https://gitee.com',
- ws: true,
- changeOrigin: true,
- rewrite: (path) => path.replace(/^\/gitee/, ''),
- },
- },
- },
- build: {
- outDir: 'dist',
- chunkSizeWarningLimit: 1500,
- rollupOptions: {
- output: {
- entryFileNames: `assets/[name].[hash].js`,
- chunkFileNames: `assets/[name].[hash].js`,
- assetFileNames: `assets/[name].[hash].[ext]`,
- compact: true,
- manualChunks: {
- vue: ['vue', 'vue-router', 'pinia'],
- elementPlus: ['element-plus'],
- echarts: ['echarts'],
- },
- },
- },
- },
- css: { preprocessorOptions: { css: { charset: false } } },
- define: {
- __VUE_I18N_LEGACY_API__: JSON.stringify(false),
- __VUE_I18N_FULL_INSTALL__: JSON.stringify(false),
- __INTLIFY_PROD_DEVTOOLS__: JSON.stringify(false),
- __VERSION__: JSON.stringify(process.env.npm_package_version),
- },
- }
- })
- export default viteConfig
|