diff --git a/apps/examples/vite.config.ts b/apps/examples/vite.config.ts index 14d0ba4be..d97f33360 100644 --- a/apps/examples/vite.config.ts +++ b/apps/examples/vite.config.ts @@ -39,11 +39,11 @@ function urlOrLocalFallback(mode: string, url: string | undefined, localFallback const TLDRAW_BEMO_URL_STRING = env === 'production' - ? '"https://demo.tldraw.xyz"' + ? 'https://demo.tldraw.xyz' : env === 'canary' - ? '"https://canary-demo.tldraw.xyz"' + ? 'https://canary-demo.tldraw.xyz' : PR_NUMBER - ? `"https://pr-${PR_NUMBER}-demo.tldraw.xyz"` + ? `https://pr-${PR_NUMBER}-demo.tldraw.xyz` : undefined export default defineConfig(({ mode }) => ({