Fix frontend for seperate backend, and make preferences page

This commit is contained in:
dragongoose
2023-03-24 18:48:45 -04:00
parent 1e9726a601
commit edcc3efe1d
11 changed files with 230 additions and 101 deletions

10
env.d.ts vendored
View File

@ -1 +1,11 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_BACKEND_URL: string
readonly VITE_INSTANCE_URL: string
// more env variables...
}
interface ImportMeta {
readonly env: ImportMetaEnv
}