Entradas

Mis apuntes de NEXT.JS

Imagen
 Middleware para NEXT                               Video:  https://youtu.be/cDWytA0V2kI               repositorio:   https://github.com/vahid-nejad/next-auth-nextjs13               MIdISCORD (PRIVADO):    https://discord.com/channels/918177610075357194/1084643931083509871/1084643931083509871

Mis apuntes next-auth

Imagen
  Fuente:  https://www.hamedbahram.io/notes/next-auth-v4 documentacion ofical:  https://next-auth.js.org/getting-started/introduction Instalacion npm install next - auth páginas/api/auth/[... nextauth].js import NextAuth from ' next-auth ' import GithubProvider from ' next-auth/providers/github ' export default NextAuth ( { providers : [ GithubProvider ( { clientId : process . env . GITHUB_ID , clientSecret : process . env . GITHUB_SECRET } ) // ...add more providers here ] } )