-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Description
I noticed that on the website the Copy for LLM button isn't working correctly:

I think the vercel.json config currently blocks clipboard-write with clipboard-write=(). I think the version that would allow clipboard-write for same-origin only would use clipboard-write=(self)` on the deployment would look something like this:
{
"build": {
"env": {
"YARN_VERSION": "1.22.22"
}
},
"headers": [
{
"source": "/(.*)",
"headers": [
{
"key": "Permissions-Policy",
"value": "clipboard-write=(self)"
}
]
}
]
}
Metadata
Metadata
Assignees
Labels
No labels
