Skip to content

Commit

Permalink
Add SSR and SSG detection for Next.js
Browse files Browse the repository at this point in the history
  • Loading branch information
tunetheweb committed Dec 13, 2023
1 parent 05e1e31 commit 5c663b2
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions src/technologies/n.json
Original file line number Diff line number Diff line change
Expand Up @@ -682,6 +682,39 @@
"requires": "Next.js",
"website": "https://nextjs.org/docs/app"
},
"Next.js SSR": {
"cats": [
12
],
"description": "Next.js Server-Side Rendering.",
"icon": "Next.js.svg",
"implies": [
"Next.js"
],
"js": {
".__NEXT_DATA__.gip": "true",
".__NEXT_DATA__.gssp": "true"
},
"requires": "Next.js",
"website": "https://nextjs.org/docs/pages/building-your-application/rendering/server-side-rendering"
},
"Next.js SSG": {
"cats": [
12
],
"description": "Next.js Statis Site Generation.",
"icon": "Next.js.svg",
"implies": [
"Next.js"
],
"js": {
".__NEXT_DATA__.gsp": "true",
".__NEXT_DATA__.nextExport": "true",
".__NEXT_DATA__.autoExport": "true"
},
"requires": "Next.js",
"website": "https://nextjs.org/docs/pages/building-your-application/rendering/static-site-generation"
},
"NextAuth.js": {
"cats": [
69
Expand Down

0 comments on commit 5c663b2

Please sign in to comment.