[fix] example routes on vercel (#1391)

This PR updates our example app's vercel config so that routes (e.g.
bublic.tldraw.com/scroll) will work.

### Change Type
- [x] `internal`
This commit is contained in:
Steve Ruiz 2023-05-16 15:37:40 +01:00 committed by GitHub
parent d198bb3645
commit 01487be6fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,5 +9,11 @@
}
]
}
],
"rewrites": [
{
"source": "/(.*)",
"destination": "/index.html"
}
]
}