Skip to content

Commit

Permalink
chore: Fix double basePath application
Browse files Browse the repository at this point in the history
Disabling the bloom filter causing invalid collisions
between the pages and app routers.
  • Loading branch information
franky47 committed Dec 10, 2023
1 parent da2ce6d commit 5410715
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/e2e/next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
const experimental =
process.env.WINDOW_HISTORY_SUPPORT === 'true'
? {
windowHistorySupport: true
windowHistorySupport: true,
clientRouterFilter: false
}
: {
clientRouterFilter: false
}
: undefined

const basePath =
process.env.BASE_PATH === '/' ? undefined : process.env.BASE_PATH
Expand Down

0 comments on commit 5410715

Please sign in to comment.