aboutsummaryrefslogtreecommitdiffstats
path: root/next.config.js
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 /next.config.js
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 'next.config.js')
-rw-r--r--next.config.js2
1 files changed, 1 insertions, 1 deletions
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 @@
1/** @type {import('next').NextConfig} */ 1/** @type {import('next').NextConfig} */
2const nextConfig = { 2const nextConfig = {
3 output: 'export',
3 experimental: { 4 experimental: {
4 appDir: true, 5 appDir: true,
5 outputStandalone: true,
6 }, 6 },
7}; 7};
8 8