import { defineConfig } from 'vite' import reactRefresh from '@vitejs/plugin-react-refresh' // https://vitejs.dev/config/ export default defineConfig({ plugins: [reactRefresh()], server: { proxy: { '/_matrix': 'http://localhost:8080' } } })