* fix * fixes * fixes * update docs * fixes * fixes * sandbox tokens * better logging
9 lines
201 B
TypeScript
9 lines
201 B
TypeScript
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];
|