-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
40 lines (39 loc) · 1013 Bytes
/
vite.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vue_jsx from '@vitejs/plugin-vue-jsx'
import path from "path"
import AutoImport from 'unplugin-auto-import/vite'
import Components from 'unplugin-vue-components/vite'
import { TDesignResolver } from 'unplugin-vue-components/resolvers'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue(), vue_jsx(),
AutoImport({
resolvers: [TDesignResolver({
library: 'vue-next'
})],
}),
Components({
resolvers: [TDesignResolver({
library: 'vue-next'
})],
})
],
resolve: {
alias: {
'@': path.resolve('./src') // @代替src
}
},
server: {
host: '0.0.0.0',
port: 5173,
// 前端配置跨域,当然这个只是开发环境下的配置
// 生产环境不存在跨域问题,因为前端和后端是部署在同一个服务器上的
proxy: {
'/api': {
target: 'http://localhost:8083',
changeOrigin: true
}
}
}
})