-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
69 lines (67 loc) · 2.02 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
67
68
69
/*
* @FilePath: \shop-admin\vite.config.ts
* @Filename: ''
* @Author: 小豆
* @Date: 2022-09-29 07:26:07
* @LastEditTime: 2022-09-29 20:04:55
*/
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import eslintPlugin from 'vite-plugin-eslint'
import vueJsx from '@vitejs/plugin-vue-jsx'
import path from 'path'
import legacy from '@vitejs/plugin-legacy'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
eslintPlugin({
// 配置选项
cache: false // 禁用 eslint 缓存
}),
vueJsx({
// 配置选项
}),
legacy({
targets: ['defaults', 'not IE 11']
})
],
resolve: {
alias: {
'@': path.join(__dirname, 'src'),
'@public': path.join(__dirname, 'public')
}
},
css: {
preprocessorOptions: {
scss: {
additionalData: '@import "@/styles/variables.scss";'
}
}
}
// server: {
// proxy: {
// // 字符串简写写法
// // /foo/123 => http://localhost:4567/foo/123
// // '/foo': 'http://localhost:4567/foo',
// // 选项写法
// '/admin': {
// // /admin/login => https://shop.fed.lagou.com/api/admin/login
// target: 'https://shop.fed.lagou.com/api', // 代理的目标地址
// // 兼容基于名字的虚拟主机
// // a.com localhost:xxx
// // b.com localhost:xxx
// // HTTP 请求头部的 origin 字段
// // 我们在开发模式:默认的 origin 是真实的 origin:localhost:3000
// // changeOrigin: true,代理服务会把 origin 修改为目标地址 http://jsonplaceholder.typicode.com
// changeOrigin: true
// // 路径重写
// // http://jsonplaceholder.typicode.com/api/xxx
// // /api/xxx => http://jsonplaceholder.typicode.com/api/xxx
// // http://jsonplaceholder.typicode.com/xxx
// // /api/xxx => http://jsonplaceholder.typicode.com/api/xxx
// // rewrite: (path) => path.replace(/^\/api/, '')
// }
// }
// }
})