diff --git a/config/production.ts b/config/production.ts new file mode 100644 index 0000000..fc05df2 --- /dev/null +++ b/config/production.ts @@ -0,0 +1,5 @@ +export default { + userAccessToken: { + cookieName: `rcal-session`, + }, +}; diff --git a/config/staging.ts b/config/staging.ts index ec46fb6..d899a46 100644 --- a/config/staging.ts +++ b/config/staging.ts @@ -14,4 +14,8 @@ export default { baseUrl: 'https://rds-website-calendar.fly.dev', }, }, + + userAccessToken: { + cookieName: `rcal-session-staging`, + }, };