From bbb1535b1a1ea6117c9722c6c21e2fd46fef6c2d Mon Sep 17 00:00:00 2001 From: Rob Sterner Date: Mon, 25 Nov 2024 13:24:35 -0500 Subject: [PATCH] trying to fix up the asset paths --- next.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/next.config.ts b/next.config.ts index 1e5d7f4..70f6552 100644 --- a/next.config.ts +++ b/next.config.ts @@ -7,8 +7,8 @@ const nextConfig: NextConfig = { images: { unoptimized: true, }, - basePath: isProduction ? "/staffplan-website" : "", - assetPrefix: isProduction ? "/staffplan-website" : "", + // basePath: isProduction ? "/staffplan-website" : "", + // assetPrefix: isProduction ? "/staffplan-website" : "", }; export default nextConfig;