File Upload Configuration
This section is used to configure file upload settings, including allowed file types and file size limits. For methods of file uploading and file deletion, please refer to the Methods.
Default Configuration
{
file: {
allowedMimeTypes: [],
maxSize: 1024 * 1024 * 100, // 100MB
},
}
Configuration Item Descriptions
file.allowedMimeTypes
Description: The allowed file types for upload. An empty array indicates that all file types are allowed.
Type: Array
Default: []
.
Options:
Valid MIME type values.
Additionally, to upload files of the same type, you can use the * wildcard for simplified configuration. For example, to allow the upload of all image files, it can be configured as ['image/*']
.
file.maxSize
Description: The maximum size allowed for uploaded files, in bytes (B).
Type: Number
.