Skip to content

Commit

Permalink
feat: support next.js v14 (#53)
Browse files Browse the repository at this point in the history
* chore(deps-dev): bump next from 13.0.5 to 14.2.4

Bumps [next](https://github.com/vercel/next.js) from 13.0.5 to 14.2.4.
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v13.0.5...v14.2.4)

---
updated-dependencies:
- dependency-name: next
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* feat: support next.js v14

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
toomuchdesign and dependabot[bot] authored Jul 5, 2024
1 parent 18b5ee5 commit 638f4ed
Show file tree
Hide file tree
Showing 6 changed files with 720 additions and 260 deletions.
5 changes: 5 additions & 0 deletions .changeset/unlucky-beans-watch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'next-use-contextual-routing': minor
---

Support next.js v14
9 changes: 6 additions & 3 deletions demo/next.config.js → demo/next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ if (process.env.BUILD_TARGET === 'github-pages') {
basePath = `/${repo}`;
}

module.exports = {

const nextConfig = {
assetPrefix: assetPrefix,
basePath: basePath,
};
basePath: basePath
}

export default nextConfig
Loading

0 comments on commit 638f4ed

Please sign in to comment.