Skip to content

Commit

Permalink
Adds fallback value for BASE_URL.
Browse files Browse the repository at this point in the history
  • Loading branch information
steven2308 committed Aug 16, 2023
1 parent 2e23850 commit a53f27d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const config: HardhatUserConfig = {
},
base: {
chainId: 8453,
url: process.env.BASE_URL,
url: process.env.BASE_URL || '',
accounts: process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [],
},
},
Expand Down

0 comments on commit a53f27d

Please sign in to comment.