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. --- next.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'next.config.js') diff --git a/next.config.js b/next.config.js index 62e6502..c335cc8 100644 --- a/next.config.js +++ b/next.config.js @@ -1,8 +1,8 @@ /** @type {import('next').NextConfig} */ const nextConfig = { + output: 'export', experimental: { appDir: true, - outputStandalone: true, }, }; -- cgit v1.2.3