Files
chrome-use/examples/environments/lib/constants.ts
T
Chris Tate 5bf9fedd58 fix environments demo (#696)
* fix

* fixes

* fixes

* update docs

* fixes

* fixes

* sandbox tokens

* better logging
2026-03-09 17:00:30 -05:00

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];