rate limits for demo (#695)

This commit is contained in:
Chris Tate
2026-03-09 15:43:25 -05:00
committed by GitHub
parent cc3c70dc86
commit c0a525c9e4
8 changed files with 188 additions and 18 deletions
+8
View File
@@ -0,0 +1,8 @@
export const ALLOWED_URLS = [
"https://example.com",
"https://ai-sdk.dev",
"https://useworkflow.dev",
"https://vercel.com",
] as const;
export type AllowedUrl = (typeof ALLOWED_URLS)[number];