import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' import vuetify from 'vite-plugin-vuetify' export default defineConfig({ plugins: [ vue(), vuetify({ autoImport: true }) ], build: { outDir: 'dist', emptyOutDir: true, sourcemap: false }, server: { port: 5173, proxy: { // Dev server proxies API to local Quart '/api': 'http://localhost:8080', '/ws': { target: 'ws://localhost:8080', ws: true } } } })