- dev ve prod için env ayarları yapıldı.

- test sunucusu iin build script eklendi
This commit is contained in:
Kevser
2025-07-28 17:14:07 +03:00
parent 7998b7bd6c
commit f4c0511afb
8 changed files with 23 additions and 7 deletions

7
env.d.ts vendored
View File

@ -1,2 +1,9 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_API_URL: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}