aboutsummaryrefslogtreecommitdiffstats
path: root/app/api/hello/route.ts
diff options
context:
space:
mode:
authorbndw <ben@bdw.to>2026-01-23 20:41:52 -0800
committerbndw <ben@bdw.to>2026-01-23 20:41:52 -0800
commit8ca69600061ee64f41c1da4372e6dc2915c2f597 (patch)
treee290d37449ee8e272e1b9fdc9d062b584830860e /app/api/hello/route.ts
parent9986da56a6097a69d503908bc8baad0e9c969642 (diff)
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.
Diffstat (limited to 'app/api/hello/route.ts')
-rw-r--r--app/api/hello/route.ts3
1 files changed, 0 insertions, 3 deletions
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 @@
1export async function GET(request: Request) {
2 return new Response('Hello, Next.js!')
3}