├── .gitignore ├── next-env.d.ts ├── package.json ├── pages ├── _app.tsx ├── api │ └── oauth.ts └── index.tsx ├── readme.md ├── styles └── index.css ├── tsconfig.json ├── utils ├── config.ts ├── parse-user.ts └── types.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextjs-discord-oauth/HEAD/.gitignore -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextjs-discord-oauth/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextjs-discord-oauth/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextjs-discord-oauth/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/api/oauth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextjs-discord-oauth/HEAD/pages/api/oauth.ts -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextjs-discord-oauth/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextjs-discord-oauth/HEAD/readme.md -------------------------------------------------------------------------------- /styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextjs-discord-oauth/HEAD/styles/index.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextjs-discord-oauth/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextjs-discord-oauth/HEAD/utils/config.ts -------------------------------------------------------------------------------- /utils/parse-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextjs-discord-oauth/HEAD/utils/parse-user.ts -------------------------------------------------------------------------------- /utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextjs-discord-oauth/HEAD/utils/types.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextjs-discord-oauth/HEAD/yarn.lock --------------------------------------------------------------------------------