feat: add settings menu
All checks were successful
Deploy to VPS (dist) / deploy (push) Successful in 1m40s

This commit is contained in:
Hewston Fox
2026-03-22 04:08:56 +02:00
parent 2a1115b66f
commit 5e9acffa09
89 changed files with 3412 additions and 216 deletions

4
src/i18n/index.d.ts vendored
View File

@@ -1,9 +1,11 @@
import "i18next";
import type { resources } from "../../public/locales/en.d.ts";
import resources from "./resources";
declare module "i18next" {
interface CustomTypeOptions {
resources: { translation: typeof resources };
strictKeyChecks: true;
enableSelector: true;
}
}