fix: upload component preview .webp image (#2631)

Co-authored-by: tianyuan233 <zty.dev@outlook.com>
This commit is contained in:
zty 2023-03-16 13:05:07 +08:00 committed by GitHub
parent 7bbb86249b
commit b66a83c10f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,7 @@ export function checkImgType(file: File) {
}
export function isImgTypeByName(name: string) {
return /\.(jpg|jpeg|png|gif)$/i.test(name);
return /\.(jpg|jpeg|png|gif|webp)$/i.test(name);
}
export function getBase64WithFile(file: File) {