You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
921 B
36 lines
921 B
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
import { viteMockServe } from 'vite-plugin-mock'
|
|
|
|
//import { TanStackRouterVite } from '@tanstack/router-vite-plugin'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
//定义别名的路径
|
|
resolve: {
|
|
alias: {
|
|
'@': '/src',
|
|
},
|
|
},
|
|
server: {
|
|
proxy: {
|
|
'/api': {
|
|
target: 'https://proapi.devwork.top',
|
|
changeOrigin: true,
|
|
rewrite: (path) => path
|
|
}
|
|
}
|
|
},
|
|
plugins: [
|
|
react(),
|
|
viteMockServe({
|
|
// 是否启用 mock 功能(默认值:process.env.NODE_ENV !== 'production')
|
|
enable: false,
|
|
|
|
// mock 文件的根路径,默认值:'mocks'
|
|
mockPath: 'mock',
|
|
logger: true,
|
|
}),
|
|
//TanStackRouterVite(),
|
|
],
|
|
})
|