import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' import { fileURLToPath, URL } from 'node:url' export default defineConfig({ plugins: [vue()], resolve: { alias: { '@': fileURLToPath(new URL('./src', import.meta.url)), '@shared': fileURLToPath(new URL('../../shared', import.meta.url)) } }, server: { port: 3010, proxy: { '/api/auth': { target: 'http://localhost:8001', changeOrigin: true, }, '/api': { target: 'http://localhost:8003', changeOrigin: true, }, '/uploads': { target: 'http://localhost:8003', changeOrigin: true, } } }, build: { outDir: 'dist', sourcemap: true, } })