From 8ca69600061ee64f41c1da4372e6dc2915c2f597 Mon Sep 17 00:00:00 2001 From: bndw Date: Fri, 23 Jan 2026 20:41:52 -0800 Subject: feat: enable static site export Remove unused hello API route template and configure Next.js for static export. Add make target for building static site. --- app/api/hello/route.ts | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 app/api/hello/route.ts (limited to 'app/api/hello') diff --git a/app/api/hello/route.ts b/app/api/hello/route.ts deleted file mode 100644 index d1cc6ee..0000000 --- a/app/api/hello/route.ts +++ /dev/null @@ -1,3 +0,0 @@ -export async function GET(request: Request) { - return new Response('Hello, Next.js!') -} -- cgit v1.2.3