frontend-web/vite.config.ts

12 lines
207 B
TypeScript
Raw Permalink Normal View History

2023-12-07 16:48:45 +00:00
import { defineConfig } from 'vite'
import solid from 'vite-plugin-solid'
export default defineConfig({
plugins: [solid()],
2023-12-19 23:29:34 +00:00
server: {
proxy: {
"/_matrix": "http://localhost:6167"
}
}
2023-12-07 16:48:45 +00:00
})