docs: consistent indents with space instead of tabs (#1620)

This commit is contained in:
Khiet Tam Nguyen
2025-03-02 18:15:30 +11:00
committed by GitHub
parent 789a42b5b8
commit d0c489588a
2 changed files with 4 additions and 4 deletions

View File

@@ -70,8 +70,8 @@ export const auth = betterAuth({
defaultCookieAttributes: {
secure: true,
httpOnly: true,
sameSite: "none", // Allows CORS-based cookie sharing across subdomains
partitioned: true // New browser standards will mandate this for foreign cookies
sameSite: "none", // Allows CORS-based cookie sharing across subdomains
partitioned: true, // New browser standards will mandate this for foreign cookies
},
},
trustedOrigins: [

View File

@@ -128,7 +128,7 @@ export const auth = createAuth({
defaultCookieAttributes: {
sameSite: "none",
secure: true,
partitioned: true // New browser standards will mandate this for foreign cookies
partitioned: true // New browser standards will mandate this for foreign cookies
}
}
})
@@ -143,7 +143,7 @@ export const auth = createAuth({
sessionToken: {
sameSite: "none",
secure: true,
partitioned: true // New browser standards will mandate this for foreign cookies
partitioned: true // New browser standards will mandate this for foreign cookies
}
}
}