1.10.18. fejezet, NextJS
Beküldte pzoli - 2023, május 24 - 11:53de
Kapcsolódó hivatkozások
- create.t3.gg
- T3 first steps
- Next-Auth
- tRPC
- TailwindCSS
- Next-absolute-url
- NextJS tutorial (YouTube) (github)
- How to Build a REST API with Next.js 13
- Swagger documents
- Setting Up React Query in Your Next.js 13 App
- Next.js with React Testing Library, Jest, TypeScript (YouTube)
- Next.js auth (YouTube)
- Next.js Kinde auth (YouTube)
- Common Errors in Next.js and How to Resolve Them
Alkalmazás létrehozása
npx create-next-app homework4nextjs --typescript --eslint
VSCode bővítmények
- ES7+ React/Redux/React-Native snippets
- Thunder Client
Kód generáláshoz használt rövidítések:
- rfc / rafce - React function component
- tsrfc - TypeScript React function component
Hibajavítások
Mongoose OverwriteModelError: Cannot overwrite [...] model once compiled.
Amellett hogy || jelekkel ellenőrizzük a definició exportálását, ügyeljünk a név kis/nagybetű érzékenységére is.
export default mongoose.models.Difficulty || model("difficulty", difficultySchema); //helyette export default mongoose.models.Difficulty || model("Difficulty", difficultySchema);
- A hozzászóláshoz be kell jelentkezni