Releases: tatethurston/nextjs-routes
Releases · tatethurston/nextjs-routes
v0.0.12
What's Changed
- Removed reexports of
next/link
andnext/router
.
This means replacing imports of next/link
with nextjs-routes/link
and next/router
with nextjs-routes/router
is no longer necessary:
-import Link from "nextjs-routes/link";
+import Link from "next/link";
-import { useRouter } from 'nextjs-routes/router'
+import { useRouter } from 'next/router'
- Added windows support
Full Changelog: v0.0.11...v0.0.12
v0.0.11
- This library now ships ESM exclusively, the CommonJS exports have been removed. This works out of the box with NextJS' build process and jest config.
v0.0.10
v0.0.9
v0.0.8
What's Changed
- typed router.query by @tatethurston in #5
- v0.0.8 by @tatethurston in #7
Full Changelog: v0.0.6...v0.0.8
v0.0.7f
Full Changelog: v0.0.6...v0.0.7f
v0.0.6
update readme
v0.0.5
v0.0.5
v0.0.4
inline all type requirements
v0.0.3
override nextjs types