#How do I access previous versions documentation (eg v13)
8 messages · Page 1 of 1 (latest)
🔎 This post has been indexed in our web forum and will be seen by search engines so other users can find it outside Discord
🕵️ Your user profile is private by default and won't be visible to users outside Discord, if you want to be visible in the web forum you can add the "Public Profile" role in id:customize
✅ You can mark a message as the answer for your post with Right click -> Apps -> Mark Solution
(if you don't see the option, try refreshing Discord with Ctrl + R)
you can look at the markdown files on github and use their version history for older version
https://github.com/vercel/next.js/commits/canary/docs/02-app/02-api-reference/05-next-config-js/index.mdx
how do i know which one is v13?
can i ask why you dont use v14 and do you mean pages dir?
however, this is the file for v13.5.6 (the latest v13 release): https://github.com/vercel/next.js/blob/v13.5.6/docs/02-app/02-api-reference/05-next-config-js/index.mdx
I mean the version of next. I do use v14.
Consumers of my library don't.
Exporting a library that supports server components with code that does not work in browser (eg jsdom stuff) requires the following export:
exports: {
".": {
"browser": "browserstuff.js",
"node": " "nodestuff.js"
}
}
Unfortunately that is not backwards compatible with nextjs versions <14 as it incorrectly chooses the "node" version.
I wanted to refer to the next.config documentation for v13 but for some bizarre reason that is really hard to find. /rant
ah ok that makes sense, i think my latest link should be what you want then!