We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e48ca7f commit cc19dc2Copy full SHA for cc19dc2
1 file changed
backend/src/shared/config/environment.ts
@@ -17,9 +17,9 @@ export const env = {
17
jwt: {
18
secret: process.env.JWT_SECRET || "default_secret",
19
refreshSecret: process.env.JWT_REFRESH_SECRET || "refresh_default_secret",
20
- expiresIn: (process.env.JWT_EXPIRES_IN as StringValue) || "1d",
+ expiresIn: (process.env.JWT_EXPIRES_IN as string) || "1d",
21
refreshExpiresIn:
22
- (process.env.JWT_REFRESH_EXPIRES_IN as StringValue) || "30d",
+ (process.env.JWT_REFRESH_EXPIRES_IN as string) || "30d",
23
},
24
ai: {
25
geminiKey: process.env.GEMINI_API_KEY,
0 commit comments