-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
can not upload file to api route #58
Comments
Can you provide a repository with a minimal demo app? @craigcosmo |
here is the repo |
@craigcosmo In your reproduction, in file
Changing the dev url to |
I mean it works on localhost, but not on any server, whether it's vercel or render.com When I switched back to node apdater, the upload worked on servers. |
@craigcosmo, the origin checking has been changed lately, could you test if it still fails? |
This happened before the origin checking |
My hypothesis is that origin-checking is not the issue, but more that there were problems with how Bun handled requests. In Bun 1.1.27 they seemed to have fixed it, so after upgrading Bun, I'd be curious if the problem remains. |
with node-adapter I can upload file to api route
with svelte-adapter-bun I can not upload file to api route. Error: 403 forbidden
tested with the same file and size
to reproduce
create a brand new sveltekit app from command line
create an api route with POST request
create a +page.svelte in a normal route in
src
, in there you upload file to api route using fetch with post method.it will fail.
The text was updated successfully, but these errors were encountered: