Skip to content

Commit

Permalink
disable basePath in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-williams committed Dec 9, 2023
1 parent 5b6e3f8 commit 152ebb0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const basePath = "/maps"
const basePath = process.env["CI"] ? "" : "/maps"
console.log("basePath", basePath)

module.exports = {
reactStrictMode: true,
Expand Down

0 comments on commit 152ebb0

Please sign in to comment.