test: keep Vite env helper in frontend project

This commit is contained in:
2026-08-05 00:43:50 +00:00
parent 58f5e1102f
commit e86a23f749
3 changed files with 9 additions and 9 deletions
+7
View File
@@ -0,0 +1,7 @@
export const mergeViteEnv = (
fileEnv: Record<string, string>,
runtimeEnv: NodeJS.ProcessEnv
): Record<string, string | undefined> => ({
...fileEnv,
...runtimeEnv,
});