This commit is contained in:
Travis Fischer
2021-02-03 20:35:37 -05:00
parent 0bd5a87352
commit 1910302874

View File

@@ -10,7 +10,7 @@ export function getSiteConfig<T>(
defaultValue?: T
): T {
if (envKey) {
// allow environment variables to override site.config.js
// allow environment variables to override site.config.js (optional)
const envValue = process.env[envKey]
if (envValue !== undefined) {