fixes issue with local development cookies

This commit is contained in:
nai-degen 2023-11-06 10:28:27 -06:00
parent a27163a629
commit b615ffa433
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ export const config: Config = {
},
quotaRefreshPeriod: getEnvWithDefault("QUOTA_REFRESH_PERIOD", undefined),
allowNicknameChanges: getEnvWithDefault("ALLOW_NICKNAME_CHANGES", true),
useInsecureCookies: getEnvWithDefault("USE_INSECURE_COOKIES", false),
useInsecureCookies: getEnvWithDefault("USE_INSECURE_COOKIES", isDev),
} as const;
function generateCookieSecret() {