import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' import tailwindcss from '@tailwindcss/vite' import { fileURLToPath, URL } from 'node:url' import { readFileSync } from 'node:fs' const pkg = JSON.parse(readFileSync(new URL('./package.json', import.meta.url), 'utf-8')) export default defineConfig({ plugins: [ vue(), tailwindcss(), ], define: { __APP_VERSION__: JSON.stringify(pkg.version), }, resolve: { alias: { '@': fileURLToPath(new URL('./src', import.meta.url)), }, }, server: { port: 5174, proxy: { '/api': { target: 'http://localhost:3000', changeOrigin: true, ws: true, // Enable WebSocket proxying }, }, }, })