Mark R. Florkowski

Results 89 comments of Mark R. Florkowski

Argh... I thought we had fixed this... will try again to get this sorted.

Really depends on the amount of work. We can take a look after the currently in-flight stuff ships 👍

I ran into this as well. IIRC, you need to set a logLevel in your Nuxt config: ```diff export default defineNuxtConfig({ devtools: { enabled: true }, modules: ["@uploadthing/nuxt"], compatibilityDate: "2024-07-26",...

Hmm I am able to reproduce that locally as well. If you set `config: { mode: 'manual' }` in your component: ```ts ``` Does it still fail with a 500?

Ok, that was what I was worried about. This is definitely a bug. You can try using this canary version: `@uploadthing/[email protected]` Note: I believe you will need to add an...

a potential workaround might include a configuration option in the router where you can specify an array of mime types, so that you would not have to make separate entries...

We provide documentation on implementing these adapter types [in our docs](https://docs.uploadthing.com/uploading-files) with partial examples in Python, PHP and Go for key parts of the upload process. Additionally, we offer an...

We are not primarily python developers, so at this time we do not want to take on the burden of officially supporting Python. That package is linked in our documentation...

We don't currently include the file list/count to the content functions, but you could do something like this: ```tsx "use client"; import { useState } from "react"; import { UploadDropzone...

Can you provide a bit more detail about the files that you are seeing this occur with? Eg. file size, type, etc.