260320:1659 Refactor Overrall #09 Fix by antigravity: pnpm frontend deploy
Build and Deploy / deploy (push) Successful in 7m17s
Build and Deploy / deploy (push) Successful in 7m17s
This commit is contained in:
@@ -11,7 +11,7 @@ const loginSchema = z.object({
|
||||
password: z.string().min(1),
|
||||
});
|
||||
|
||||
const baseUrl = process.env.NEXT_PUBLIC_API_URL || "http://localhost:3001/api";
|
||||
const baseUrl = (typeof window === "undefined" ? process.env.INTERNAL_API_URL : null) || process.env.NEXT_PUBLIC_API_URL || "http://localhost:3001/api";
|
||||
|
||||
// Helper to parse JWT expiry
|
||||
function getJwtExpiry(token: string): number {
|
||||
|
||||
Reference in New Issue
Block a user