FOO_URL=https://example.com/client object like so: client: {
NEXT_PUBLIC_FOO_URL: z.string().min(1),
},runtimeEnvobject like so: runtimeEnv: {
NEXT_PUBLIC_FOO_URL: process.env.FOO_URL,
},Unhandled Runtime Error Error: Invalid environment variablesruntimeEnv object to the following: runtimeEnv: {
NEXT_PUBLIC_FOO_URL: process.env.NEXT_PUBLIC_FOO_URL,
},