Skip to content

Commit

Permalink
fix: no more endless Safari login loops (#232)
Browse files Browse the repository at this point in the history
- Safari apparently requires trailing slashes or it dumps all hashes. So... we added a trailing slash.

closes #106
  • Loading branch information
jlengstorf authored Jan 11, 2019
1 parent 4868c53 commit b0226f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .env.development
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
AUTH0_DOMAIN=login.gatsbyjs.org
AUTH0_CLIENTID=kp6gHVX1pySEYNpvktwciU5Mm1j0C52D
AUTH0_CALLBACK=http://localhost:8000/callback
AUTH0_CALLBACK=http://localhost:8000/callback/
AUTH0_AUDIENCE=https://api.gatsbyjs.com/
GATSBY_API=https://api.gatsbyjs.org
SHOPIFY_ACCESS_TOKEN=9aa73c089d34741f36edbe4d7314373a
Expand Down
2 changes: 1 addition & 1 deletion .env.production
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
AUTH0_DOMAIN=login.gatsbyjs.org
AUTH0_CLIENTID=kp6gHVX1pySEYNpvktwciU5Mm1j0C52D
AUTH0_CALLBACK=https://store.gatsbyjs.org/callback
AUTH0_CALLBACK=https://store.gatsbyjs.org/callback/
AUTH0_AUDIENCE=https://api.gatsbyjs.com/
GATSBY_API=https://api.gatsbyjs.org
SHOPIFY_ACCESS_TOKEN=9aa73c089d34741f36edbe4d7314373a

0 comments on commit b0226f7

Please sign in to comment.