Files
AquaControlAI/web/vite.config.ts
T
2026-07-12 19:18:26 +08:00

10 lines
312 B
TypeScript

import { fileURLToPath, URL } from 'node:url'
import vue from '@vitejs/plugin-vue'
import { defineConfig } from 'vite'
export default defineConfig({
plugins: [vue()],
resolve: { alias: { '@': fileURLToPath(new URL('./src', import.meta.url)) } },
server: { proxy: { '/api': 'http://127.0.0.1:8080' } },
})