fix: cannot upload large sites
This commit is contained in:
@ -1,6 +1,9 @@
|
||||
import axiosModule from 'axios';
|
||||
import { ensureStackTrace } from './ensure-stack-trace';
|
||||
|
||||
export const axios = axiosModule.create();
|
||||
export const axios = axiosModule.create({
|
||||
maxBodyLength: Infinity,
|
||||
maxContentLength: Infinity,
|
||||
});
|
||||
|
||||
ensureStackTrace(axios);
|
||||
|
Reference in New Issue
Block a user