-
Notifications
You must be signed in to change notification settings - Fork 3
/
vite.config.bak
37 lines (35 loc) · 921 Bytes
/
vite.config.bak
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
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import * as path from 'path';
import Components from 'unplugin-vue-components/vite';
import { NaiveUiResolver } from 'unplugin-vue-components/resolvers';
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
//设置别名
alias: {
'@': path.resolve(__dirname, 'src'),
},
},
plugins: [
vue(),
Components({
resolvers: [NaiveUiResolver()],
}),
],
server: {
port: 8088, //启动端口
hmr: {
host: '127.0.0.1',
port: 8088,
},
// 设置 https 代理
proxy: {
'/api': {
target: 'https://api.github.com',
changeOrigin: true,
rewrite: (path: string) => path.replace(/^\/api/, ''),
},
},
},
});