fixes issue with local development cookies
This commit is contained in:
parent
a27163a629
commit
b615ffa433
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue