tangled
alpha
login
or
join now
jauntywk.bsky.social
/
margin
forked from
margin.at/margin
0
fork
atom
Write on the margins of the internet. Powered by the AT Protocol.
0
fork
atom
overview
issues
pulls
pipelines
actual fix
scanash.com
1 month ago
7764623c
1cfc158f
+5
2 changed files
expand all
collapse all
unified
split
backend
internal
oauth
handler.go
web
astro.config.mjs
+2
backend/internal/oauth/handler.go
···
557
557
Value: "",
558
558
Path: "/",
559
559
HttpOnly: true,
560
560
+
Secure: true,
561
561
+
SameSite: http.SameSiteLaxMode,
560
562
MaxAge: -1,
561
563
})
562
564
+3
web/astro.config.mjs
···
10
10
export default defineConfig({
11
11
adapter: node({ mode: "standalone" }),
12
12
integrations: [react(), tailwind()],
13
13
+
security: {
14
14
+
checkOrigin: false,
15
15
+
},
13
16
vite: {
14
17
ssr: {
15
18
noExternal: true,