webpage start

This commit is contained in:
2026-03-02 14:47:14 +01:00
parent 0856e154b9
commit 65d5ab71d7
59 changed files with 1889 additions and 1309 deletions

View File

@@ -1,9 +1,9 @@
import { createEnv } from "@t3-oss/env-core";
import { z } from "zod";
export const env = createEnv({
clientPrefix: "VITE_",
client: {},
runtimeEnv: (import.meta as any).env,
emptyStringAsUndefined: true,
clientPrefix: "VITE_",
client: {},
// biome-ignore lint/suspicious/noExplicitAny: Vite's import.meta.env doesn't have proper types
runtimeEnv: (import.meta as any).env,
emptyStringAsUndefined: true,
});