From 25ebb7c8c66e6fa7cfb1d80df78e978f1c854170 Mon Sep 17 00:00:00 2001 From: muddlebee Date: Wed, 4 Dec 2024 00:03:05 +0530 Subject: [PATCH] path fix --- next.config.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/next.config.ts b/next.config.ts index 6913dcf..a7239a3 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,10 +1,10 @@ /** @type {import('next').NextConfig} */ const nextConfig = { - output: 'export', + output: 'export', // This is necessary for static export images: { - unoptimized: true, + unoptimized: true, // This can help with image loading on GitHub Pages }, - basePath: process.env.NODE_ENV === 'production' ? '/swush-me-landing' : '', + basePath: process.env.NODE_ENV === 'production' ? '/swush-me-landing' : '', // Adjusts the base path for production } -module.exports = nextConfig +module.exports = nextConfig \ No newline at end of file