mirror of
https://github.com/vector-im/element-call.git
synced 2026-09-19 22:19:30 +00:00
13 lines
262 B
JavaScript
13 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'
|
|
}
|
|
}
|
|
})
|