Initial commit

This commit is contained in:
Robert Long 2021-07-16 14:22:03 -07:00
commit 7a601403e8
13 changed files with 3141 additions and 0 deletions

12
vite.config.js Normal file
View file

@ -0,0 +1,12 @@
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'
}
}
})