From 889494c1c5bdbfc2e30558b4768b3182b05a5a2d Mon Sep 17 00:00:00 2001 From: "Karobot.co" Date: Fri, 11 Sep 2026 15:53:45 -0500 Subject: [PATCH] Remove basePath so assets resolve at custom domain root The site now serves from python.org.co at the domain root instead of colombiapython.github.io/web/, so the /web basePath prefix caused all CSS/JS assets to 404. Co-Authored-By: Claude Sonnet 5 --- next.config.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/next.config.ts b/next.config.ts index 8e5c521..c4be9da 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,6 @@ import type { NextConfig } from "next"; -const repoName = process.env.GITHUB_REPOSITORY?.split("/")[1]; -const basePath = process.env.GITHUB_ACTIONS && repoName ? `/${repoName}` : ""; +const basePath = ""; const apiBaseUrl = process.env.NEXT_PUBLIC_API_BASE_URL ?? "https://pythonco.orionis-framework.com"; const nextConfig: NextConfig = {