You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							163 lines
						
					
					
						
							4.5 KiB
						
					
					
				
			
		
		
	
	
							163 lines
						
					
					
						
							4.5 KiB
						
					
					
				import { resolve } from 'path'
 | 
						|
import { loadEnv } from 'vite'
 | 
						|
import type { UserConfig, ConfigEnv } from 'vite'
 | 
						|
import Vue from '@vitejs/plugin-vue'
 | 
						|
import VueJsx from '@vitejs/plugin-vue-jsx'
 | 
						|
import progress from 'vite-plugin-progress'
 | 
						|
// import EslintPlugin from 'vite-plugin-eslint'
 | 
						|
import { ViteEjsPlugin } from "vite-plugin-ejs"
 | 
						|
import PurgeIcons from 'vite-plugin-purge-icons'
 | 
						|
import VueI18nPlugin from "@intlify/unplugin-vue-i18n/vite"
 | 
						|
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
 | 
						|
import { createStyleImportPlugin, ElementPlusResolve } from 'vite-plugin-style-import'
 | 
						|
import UnoCSS from 'unocss/vite'
 | 
						|
 | 
						|
// https://vitejs.dev/config/
 | 
						|
const root = process.cwd()
 | 
						|
 | 
						|
function pathResolve(dir: string) {
 | 
						|
  return resolve(root, '.', dir)
 | 
						|
}
 | 
						|
 | 
						|
export default ({ command, mode }: ConfigEnv): UserConfig => {
 | 
						|
  let env = {} as any
 | 
						|
  const isBuild = command === 'build'
 | 
						|
  if (!isBuild) {
 | 
						|
    env = loadEnv((process.argv[3] === '--mode' ? process.argv[4] : process.argv[3]), root)
 | 
						|
  } else {
 | 
						|
    env = loadEnv(mode, root)
 | 
						|
  }
 | 
						|
  return {
 | 
						|
    base: env.VITE_BASE_PATH,
 | 
						|
    plugins: [
 | 
						|
      Vue({
 | 
						|
        script: {
 | 
						|
          // 开启defineModel
 | 
						|
          defineModel: true
 | 
						|
        }
 | 
						|
      }),
 | 
						|
      VueJsx(),
 | 
						|
      progress(),
 | 
						|
      createStyleImportPlugin({
 | 
						|
        resolves: [ElementPlusResolve()],
 | 
						|
        libs: [{
 | 
						|
          libraryName: 'element-plus',
 | 
						|
          esModule: true,
 | 
						|
          resolveStyle: (name) => {
 | 
						|
            if (name === 'click-outside') {
 | 
						|
              return ''
 | 
						|
            }
 | 
						|
            return `element-plus/es/components/${name.replace(/^el-/, '')}/style/css`
 | 
						|
          }
 | 
						|
        }]
 | 
						|
      }),
 | 
						|
      // EslintPlugin({
 | 
						|
      //   cache: false,
 | 
						|
      //   include: ['src/**/*.vue', 'src/**/*.ts', 'src/**/*.tsx'] // 检查的文件
 | 
						|
      // }),
 | 
						|
      VueI18nPlugin({
 | 
						|
        runtimeOnly: true,
 | 
						|
        compositionOnly: true,
 | 
						|
        include: [resolve(__dirname, 'src/locales/**')]
 | 
						|
      }),
 | 
						|
      createSvgIconsPlugin({
 | 
						|
        iconDirs: [pathResolve('src/assets/svgs')],
 | 
						|
        symbolId: 'icon-[dir]-[name]',
 | 
						|
        svgoOptions: true
 | 
						|
      }),
 | 
						|
      PurgeIcons(),
 | 
						|
      ViteEjsPlugin({
 | 
						|
        title: env.VITE_APP_TITLE
 | 
						|
      }),
 | 
						|
      UnoCSS(),
 | 
						|
      // sveltekit(),
 | 
						|
    ],
 | 
						|
 | 
						|
    css: {
 | 
						|
      preprocessorOptions: {
 | 
						|
        less: {
 | 
						|
          additionalData: '@import "./src/styles/variables.module.less";',
 | 
						|
          javascriptEnabled: true
 | 
						|
        }
 | 
						|
      }
 | 
						|
    },
 | 
						|
    resolve: {
 | 
						|
      extensions: ['.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.less', '.css'],
 | 
						|
      alias: [
 | 
						|
        {
 | 
						|
          find: 'vue-i18n',
 | 
						|
          replacement: 'vue-i18n/dist/vue-i18n.cjs.js'
 | 
						|
        },
 | 
						|
        {
 | 
						|
          find: /\@\//,
 | 
						|
          replacement: `${pathResolve('src')}/`
 | 
						|
        }
 | 
						|
      ]
 | 
						|
    },
 | 
						|
    build: {
 | 
						|
      minify: 'terser',
 | 
						|
      outDir: env.VITE_OUT_DIR || 'dist',
 | 
						|
      sourcemap: env.VITE_SOURCEMAP === 'true' ? 'inline' : false,
 | 
						|
      // brotliSize: false,
 | 
						|
      terserOptions: {
 | 
						|
        compress: {
 | 
						|
          drop_debugger: env.VITE_DROP_DEBUGGER === 'true',
 | 
						|
          drop_console: env.VITE_DROP_CONSOLE === 'true'
 | 
						|
        }
 | 
						|
      }
 | 
						|
    },
 | 
						|
    server: {
 | 
						|
      port: 4000,
 | 
						|
      proxy: {
 | 
						|
        // 选项写法
 | 
						|
        '/api': {
 | 
						|
          //target: 'http://214.129.16.68:8088/rdvs',
 | 
						|
          // target: 'http://172.16.87.111:8083/ordb',
 | 
						|
          target: 'http://localhost:8082/srdb',
 | 
						|
          // target: 'http://172.16.87.111:8080/portal',
 | 
						|
          // target: 'http://localhost:8082/portal',
 | 
						|
          // target: 'http://192.168.183.136:8082/portal',
 | 
						|
          changeOrigin: true,
 | 
						|
          rewrite: path => path.replace(/^\/api/, '')
 | 
						|
        },
 | 
						|
        '/pro': {
 | 
						|
          //target: 'http://214.129.16.68:8088/rdvs',
 | 
						|
          // target: 'http://172.16.87.111:8083/ordb',
 | 
						|
          target: 'http://localhost:8082/srdb',
 | 
						|
          // target: 'http://172.16.87.111:8080/portal',
 | 
						|
          // target: 'http://localhost:8082/portal',
 | 
						|
          // target: 'http://172.20.10.4:8082/portal',
 | 
						|
          // target: 'http://192.168.183.136:8082/portal',
 | 
						|
          changeOrigin: true,
 | 
						|
          rewrite: path => path.replace(/^\/pro/, '')
 | 
						|
        },
 | 
						|
      },
 | 
						|
      hmr: {
 | 
						|
        overlay: false
 | 
						|
      },
 | 
						|
      host: '0.0.0.0'
 | 
						|
    },
 | 
						|
    optimizeDeps: {
 | 
						|
      include: [
 | 
						|
        'vue',
 | 
						|
        'vue-router',
 | 
						|
        'vue-types',
 | 
						|
        'element-plus/es/locale/lang/zh-cn',
 | 
						|
        'element-plus/es/locale/lang/en',
 | 
						|
        '@iconify/iconify',
 | 
						|
        '@vueuse/core',
 | 
						|
        'axios',
 | 
						|
        'qs',
 | 
						|
        'echarts',
 | 
						|
        'echarts-wordcloud',
 | 
						|
        'qrcode',
 | 
						|
        '@wangeditor/editor',
 | 
						|
        '@wangeditor/editor-for-vue',
 | 
						|
        'vue-json-pretty',
 | 
						|
        '@zxcvbn-ts/core',
 | 
						|
        'dayjs'
 | 
						|
      ]
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 |