Skip to content

Commit

Permalink
✨ support dev envvar
Browse files Browse the repository at this point in the history
  • Loading branch information
pizzacat83 committed Mar 14, 2021
1 parent e910240 commit 4d4c93a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion aws/src/lib/envvar/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ import { envvarLocal } from './local';

export const envvar: EnvVar = (() => {
switch (process.env.STAGE) {
case 'prod': {
case 'prod':
case 'dev': {
return envvarProd;
}
/// #if STAGE === 'local'
Expand Down

0 comments on commit 4d4c93a

Please sign in to comment.