From bb6e15532f17757069d5db212add7758d744d3d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Raul=20Mauricio=20U=C3=B1ate=20Castro?= Date: Wed, 15 Jul 2026 21:35:44 -0500 Subject: [PATCH] fix: add basePath for GitHub Pages --- next.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/next.config.ts b/next.config.ts index 4b17ba1..80d60f4 100644 --- a/next.config.ts +++ b/next.config.ts @@ -3,6 +3,7 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "export", distDir: "dist", + basePath: "/web", images: { unoptimized: true, },