This MR fixes critical authentication issues that prevented login on localhost and improves the developer experience with consolidated rebuild scripts and a working help modal keyboard shortcut. #5

Merged
ilia merged 51 commits from dev into main 2026-01-05 19:42:46 -05:00
3 changed files with 9 additions and 0 deletions
Showing only changes of commit da4d7e6f6e - Show all commits

View File

@ -4,6 +4,9 @@ import { prisma } from "@/lib/prisma"
import { logger } from "@/lib/logger"
import { hashPassword } from "@/lib/utils"
// Mark this route as dynamic to prevent build-time data collection
export const dynamic = "force-dynamic"
export async function POST(
req: NextRequest,
{ params }: { params: Promise<{ userId: string }> }

View File

@ -5,6 +5,9 @@ import { normalizeString } from "@/lib/utils"
import { logActivity } from "@/lib/activity-log"
import { logger } from "@/lib/logger"
// Mark this route as dynamic to prevent build-time data collection
export const dynamic = "force-dynamic"
export async function POST(
req: NextRequest,
{ params }: { params: Promise<{ photoId: string }> }

View File

@ -6,6 +6,9 @@ import { unlink } from "fs/promises"
import { join } from "path"
import { existsSync } from "fs"
// Mark this route as dynamic to prevent build-time data collection
export const dynamic = "force-dynamic"
export async function DELETE(
req: NextRequest,
{ params }: { params: Promise<{ photoId: string }> }