From 1c8731c4a7cfa827fb7e958620b085cf7eea2335 Mon Sep 17 00:00:00 2001 From: Michael Gathara Date: Fri, 3 Jan 2025 12:43:44 -0600 Subject: [PATCH] feat: exporting for frontend hosting only --- next.config.mjs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/next.config.mjs b/next.config.mjs index 0a7c9af..57bbdb9 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,5 +1,8 @@ /** @type {import('next').NextConfig} */ const nextConfig = { + trailingSlash: true, + output: "export", + distDir: "out", }; export default nextConfig;