element-call/vite.config.js

13 lines
262 B
JavaScript
Raw Normal View History

2021-07-16 21:22:03 +00:00
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'
}
}
})