fix edit portofolio

This commit is contained in:
2025-05-13 21:30:54 +08:00
parent 08e6708754
commit 3bc04aac3d
6 changed files with 754 additions and 20 deletions

15
types/env.d.ts vendored Normal file
View File

@@ -0,0 +1,15 @@
declare namespace NodeJS {
interface ProcessEnv {
DATABASE_URL?: string;
WIBU_PWD?: string;
Client_KEY?: string;
Server_KEY?: string;
MAPBOX_TOKEN?: string;
WS_APIKEY?: string;
NEXT_PUBLIC_WIBU_REALTIME_TOKEN?: string;
NEXT_PUBLIC_BASE_TOKEN_KEY?: string;
NEXT_PUBLIC_BASE_SESSION_KEY?: string;
NEXT_PUBLIC_API_URL?: string;
}
}