Skip to content

@opennextjs/[email protected]

Choose a tag to compare

@workers-frameworks workers-frameworks released this 08 Apr 09:33
· 31 commits to main since this release
276edf0

Patch Changes

  • #1176 2232651 Thanks @conico974! - fix for OG with Next 16.2.2

  • #1166 f89fba1 Thanks @ash1day! - fix: sort .endsWith() checks by path length descending to prevent suffix collisions in dynamic requires

    Routes whose paths are suffixes of other routes (e.g. /test/app vs /) were resolved incorrectly because the shorter path matched first in the generated .endsWith() chain. Sorting by path length descending ensures more specific (longer) paths are always checked first.

    Fixes #1156.