12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- import {
- defineConfig
- } from 'vite'
- import vue from '@vitejs/plugin-vue'
- import WindiCSS from 'vite-plugin-windicss'
- import Components from 'unplugin-vue-components/vite'
- import {
- ElementPlusResolver
- } from 'unplugin-vue-components/resolvers'
- import {
- resolve
- } from 'path';
- import cesium from 'vite-plugin-cesium';
- const pathResolve = (dir) => {
- return resolve(__dirname, '.', dir);
- };
- const alias = {
- '@': pathResolve('./src/'),
- '@tools': pathResolve('./src/tools'),
- '@api': pathResolve('./src/api'),
- '@com': pathResolve('./src/components'),
- '/@': pathResolve('./src/'),
- };
- // https://vitejs.dev/config/
- export default defineConfig({
- base: process.env.ELECTRON == "true" ? './' : "./",
- resolve: {
- alias
- },
- build: {
- sourcemap: false
- },
- optimizeDeps: {
- include: ["element-plus/lib/locale/lang/zh-cn"],
- },
- plugins: [
- Components({
- resolvers: [ElementPlusResolver()],
- }),
- WindiCSS(),
- vue(),
- cesium()
- ],
- server: {
- host: '0.0.0.0',
- open: false, //自动打开
- base: "./ ", //生产环境路径
- proxy: {
- // 本地开发环境通过代理实现跨域,生产环境使用 nginx 转发
- // // 正则表达式写法
- '^/ping': {
- target: 'https://www.baidu.com',
- changeOrigin: true, //开启代理
- rewrite: (path) => path.replace(/^\/ping/, '')
- },
- // '^/adapter': {
- // // target: 'http://10.155.32.14:8082/sharding',
- // target: 'http://192.168.10.8:9002',
- // changeOrigin: true, //开启代理
- // rewrite: (path) => path.replace(/^\/adapter/, '')
- // },
- // '^/current': {
- // // target: 'http://10.155.32.14:8082/sharding',
- // target: 'http://192.168.10.8:9002',
- // changeOrigin: true, //开启代理
- // rewrite: (path) => path.replace(/^\/current/, '')
- // },
- }
- },
- })
|