yuanjing/vite.config.ts
2026-04-01 11:05:03 +08:00

31 lines
629 B
TypeScript

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { fileURLToPath, URL } from 'node:url'
// https://vite.dev/config/
export default defineConfig({
plugins: [vue(),],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
server: {
host: 'localhost',
port: 5173,
// 配置代理解决跨域问题
proxy: {
'/api': {
target: 'https://opencomputing.ai',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, ''),
}
}
},
// optimizeDeps: {
// exclude: ['@techui/scifi']
// },
})