-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
66 lines (62 loc) · 1.6 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/* eslint-disable import/no-extraneous-dependencies */
import { fileURLToPath, URL } from 'node:url';
import { defineConfig, loadEnv } from 'vite';
import AutoImport from 'unplugin-auto-import/vite';
import Components from 'unplugin-vue-components/vite';
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers';
import vue from '@vitejs/plugin-vue';
// https://vitejs.dev/config/
export default defineConfig(({ mode }) => {
const env = loadEnv(mode, process.cwd());
const {
VITE_APP_PROXY_PATH,
VITE_APP_PROXY_TARGET,
VITE_APP_API_URL,
} = env;
return {
base: './',
server: {
host: true,
proxy: {
[`${VITE_APP_PROXY_PATH}/${VITE_APP_API_URL}`]: {
target: VITE_APP_PROXY_TARGET,
changeOrigin: true,
rewrite: (url) => url.replace(VITE_APP_PROXY_PATH, ''),
},
},
},
plugins: [
vue(),
AutoImport({
include: [
/\.[tj]sx?$/, // .ts, .tsx, .js, .jsx
/\.vue$/, /\.vue\?vue/, // .vue
/\.md$/, // .md
],
imports: [
'vue',
'vue-router',
'vue-i18n',
],
dts: './auto-imports.d.ts',
resolvers: [ElementPlusResolver()],
eslintrc: {
enabled: false,
filepath: './.eslintrc-auto-import.json',
// globalsPropValue: true,
},
}),
Components({
resolvers: [ElementPlusResolver()],
}),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
build: {
outDir: 'dist',
},
};
});