feat: increase upload size limit (#962)

This commit is contained in:
Jérémy M
2023-07-27 18:07:38 +02:00
committed by GitHub
parent 58530be78b
commit e90f44bbfb
5 changed files with 30 additions and 3 deletions

View File

@ -6,5 +6,6 @@ export const settings: Settings = {
'profile-picture': ['original'],
'workspace-logo': ['original'],
},
maxFileSize: '10MB',
},
};

View File

@ -9,5 +9,6 @@ export interface Settings {
imageCropSizes: {
[key in ValueOfFileFolder]?: ShortCropSize[];
};
maxFileSize: `${number}MB`;
};
}