diff --git a/src/lib/config/readConfig.ts b/src/lib/config/readConfig.ts index 4bd1a29..397587d 100644 --- a/src/lib/config/readConfig.ts +++ b/src/lib/config/readConfig.ts @@ -39,6 +39,12 @@ export default function readConfig() { if (existsSync('.env.local')) { const contents = readFileSync('.env.local'); + expand({ + parsed: parse(contents), + }); + } else if (existsSync('.env')) { + const contents = readFileSync('.env'); + expand({ parsed: parse(contents), });