├── .env.EXAMPLE ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── gatsby-browser.js ├── gatsby-node.js ├── package.json ├── src ├── pages │ ├── account.js │ ├── callback.js │ └── index.js └── utils │ └── auth.js ├── static └── favicon.ico └── yarn.lock /.env.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/gatsby-auth0/HEAD/.env.EXAMPLE -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/gatsby-auth0/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/gatsby-auth0/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/gatsby-auth0/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/gatsby-auth0/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/gatsby-auth0/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/gatsby-auth0/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/gatsby-auth0/HEAD/package.json -------------------------------------------------------------------------------- /src/pages/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/gatsby-auth0/HEAD/src/pages/account.js -------------------------------------------------------------------------------- /src/pages/callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/gatsby-auth0/HEAD/src/pages/callback.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/gatsby-auth0/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/utils/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/gatsby-auth0/HEAD/src/utils/auth.js -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/gatsby-auth0/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/gatsby-auth0/HEAD/yarn.lock --------------------------------------------------------------------------------