We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55f6cc7 commit e893e19Copy full SHA for e893e19
2 files changed
packages/airnode-feed/src/validation/env.ts
@@ -10,7 +10,7 @@ let env: EnvConfig | undefined;
10
export const loadEnv = () => {
11
if (env) return env;
12
13
- dotenv.config({ path: join(__dirname, '../../.env') });
+ dotenv.config({ path: join(__dirname, '../../.env'), quiet: true });
14
15
const parseResult = envConfigSchema.safeParse(process.env);
16
if (!parseResult.success) {
packages/signed-api/src/env.ts
- dotenv.config({ path: join(__dirname, '../.env') });
+ dotenv.config({ path: join(__dirname, '../.env'), quiet: true });
0 commit comments