From d90c2f4e96b20ab8ebd6ff840cceb2a2e29fecea Mon Sep 17 00:00:00 2001 From: Sean O'Connor Date: Tue, 3 Feb 2026 18:41:46 -0500 Subject: [PATCH] chore: update React dependency ranges and adjust Next.js basePath condition for GitHub Actions. --- bun.lock | 4 ++-- next.config.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bun.lock b/bun.lock index 5eeb699..87be420 100644 --- a/bun.lock +++ b/bun.lock @@ -18,8 +18,8 @@ "lucide-react": "^0.555.0", "next": "^16.1.6", "next-themes": "^0.4.6", - "react": "19.2.1", - "react-dom": "19.2.1", + "react": "^19.2.1", + "react-dom": "^19.2.1", "react-leaflet": "^5.0.0", "tailwind-merge": "^3.4.0", "zod": "^3.24.2", diff --git a/next.config.js b/next.config.js index 6b25428..1a2b95f 100644 --- a/next.config.js +++ b/next.config.js @@ -7,7 +7,7 @@ import "./src/env.js"; /** @type {import("next").NextConfig} */ const config = { output: "export", - basePath: process.env.NODE_ENV === "production" ? "/lewisburg-coffee" : undefined, + basePath: process.env.GITHUB_ACTIONS ? "/lewisburg-coffee" : undefined, images: { unoptimized: true, },