HEIC support

This commit is contained in:
2026-03-12 16:43:27 -05:00
parent 1e5f80739c
commit cf188896be
7 changed files with 185 additions and 4 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ export const ImageUpload = Extension.create({
const input = document.createElement("input");
input.type = "file";
input.accept = "image/*";
input.accept = "image/*,.heic,.heif";
input.onchange = async () => {
if (input.files?.length) {
const originalFile = input.files[0];