This is the completed code for the Vercel guide "Add Auth to a Next.js Site with Magic.link" <-- link to be added.
- Install dependencies.
npm install
# or
yarn install- Rename
.env.local.exampleto.env.localand add your Magic API keys.
mv .env.local.example .env.local// .env.local
NEXT_PUBLIC_MAGIC_PUBLISHABLE_KEY = "YOUR MAGIC PUBLISHABLE KEY"
MAGIC_SECRET_KEY = "YOUR MAGIC SECRET KEY"- Run the development server.
npm run dev
# or
yarn dev- Open http://localhost:3000 with your browser to see the result.