Commit 57f81c79 authored by nanahira's avatar nanahira

fix

parent dade795c
Pipeline #5432 passed with stages
in 3 minutes and 1 second
...@@ -66,6 +66,8 @@ export class AppService extends ConsoleLogger { ...@@ -66,6 +66,8 @@ export class AppService extends ConsoleLogger {
this.http.post<ReturnMessage<string>>(`${this.jsdUrl}/upload`, form, { this.http.post<ReturnMessage<string>>(`${this.jsdUrl}/upload`, form, {
responseType: 'json', responseType: 'json',
headers: form.getHeaders(), headers: form.getHeaders(),
maxContentLength: Infinity,
maxBodyLength: Infinity,
}), }),
); );
return new ReturnMessageDto(201, 'success', data.data); return new ReturnMessageDto(201, 'success', data.data);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment