-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvite.config.js
38 lines (37 loc) · 1.08 KB
/
vite.config.js
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
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import path from 'path'
// https://vitejs.dev/config/
export default defineConfig({
// 静态资源引用路径,默认为"/"
base: './',
build: {
// build目录名称,默认为"dist"
outDir: 'build',
// 静态资源存放目录名称,默认为"assets"
assetsDir: 'static',
},
server: {
// 支持IP访问
host: true,
// 指定dev sever的端口号,默认为5173
port: 3000,
// 自动打开浏览器运行以下页面
open: '/',
// 设置反向代理
proxy: {
// 以下示例表示:请求URL中含有"/api",则反向代理到http://localhost
// 例如: http://localhost:3000/api/login -> http://localhost/api/login
'/api': {
target: 'http://localhost/',
changeOrigin: true,
},
},
},
resolve: {
alias: {
'@': path.resolve(__dirname, 'src'),
},
},
plugins: [react()],
})