added settings

This commit is contained in:
thislight 2024-07-22 21:57:04 +08:00
parent b4f7a863a2
commit 71b9a60b35
No known key found for this signature in database
GPG key ID: A50F9451AC56A63E
15 changed files with 359 additions and 91 deletions

10
src/overrides.d.ts vendored Normal file
View file

@ -0,0 +1,10 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly BUILT_AT: string;
readonly PACKAGE_VERSION: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}