feat(projects): add port env variables

This commit is contained in:
locdp
2024-08-24 20:26:54 +07:00
parent 3830ec7a69
commit 6f5ea74d7a
3 changed files with 13 additions and 3 deletions

View File

@@ -103,6 +103,10 @@ declare namespace Env {
readonly VITE_ICONIFY_URL?: string;
/** Used to differentiate storage across different domains */
readonly VITE_STORAGE_PREFIX?: string;
/** The port number on which the server is running */
readonly VITE_SERVER_PORT?: number;
/** The port number used for previewing the application */
readonly VITE_PREVIEW_PORT?: number;
}
}