12 lines
262 B
JavaScript
12 lines
262 B
JavaScript
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'
|
|
}
|
|
}
|
|
})
|