Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
Lamarcke committed Nov 3, 2024
1 parent e0e23c4 commit 7550b58
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion .env.production
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@ NEXT_PUBLIC_SEARCH_URL=https://search.gamenode.app
NEXT_PUBLIC_SERVER_URL=https://server.gamenode.app
NEXT_PUBLIC_MATOMO_URL=https://matomo.gamenode.app/
NEXT_PUBLIC_MATOMO_SITE_ID=1
NEXT_PUBLIC_SESSION_DOMAIN=.gamenode.app
NODE_ENV=production
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,5 @@ public/~partytown

!src/wrapper/input
!src/wrapper/generate.js
src/wrapper
src/wrapper
/.env.local
3 changes: 3 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ services:
networks:
- game_node_app_public

ports:
- "3001:3001"


networks:
game_node_app_public:
Expand Down
6 changes: 1 addition & 5 deletions src/components/auth/SuperTokensProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,7 @@ export const frontendConfig = (): SuperTokensConfig => {
],
},
}),
Session.init({
sessionTokenFrontendDomain: IS_DEV
? undefined
: (process.env.NEXT_PUBLIC_SESSION_DOMAIN as string),
}),
Session.init(),
],
windowHandler: (original) => ({
...original,
Expand Down

0 comments on commit 7550b58

Please sign in to comment.