We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5e11b1 commit d617b3aCopy full SHA for d617b3a
app/routes/upload.advanced.tsx
@@ -56,7 +56,7 @@ export function loader() {
56
export async function action({ request }: ActionFunctionArgs) {
57
const start = Date.now();
58
59
- const maxPartSize = 100_000_000;
+ const maxPartSize = 100_000_000; // 100 MB
60
61
const url = new URL(request.url);
62
const uploadId = url.searchParams.get("uploadId");
app/routes/upload.basic.tsx
@@ -50,7 +50,7 @@ export async function action({ request }: ActionFunctionArgs) {
50
51
52
53
54
55
if (!uploadId) {
throw new Response(null, {
0 commit comments