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'] // }, })