Skip to content

Commit

Permalink
Merge pull request #8 from sacsbrainz/main
Browse files Browse the repository at this point in the history
chores: possile fix for auth
  • Loading branch information
sacsbrainz authored Nov 10, 2023
2 parents 502cd8c + 34c8552 commit 1f49c88
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Binary file modified bun.lockb
Binary file not shown.
5 changes: 4 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ export const setup = (app: Elysia) =>
exp: "15m",
})
)
.use(cookie());
.use(cookie({
sameSite: "none",
secure: true,
}));

const app = new Elysia()
.use(
Expand Down

0 comments on commit 1f49c88

Please sign in to comment.