From 2ac5dd49da34d33e4086630d371cbaf1ed294153 Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon, 7 Aug 2023 21:51:06 -0700
Subject: [PATCH] fix regression in code block font-size boosting on safari
 mobile

---
 quartz/plugins/emitters/componentResources.ts | 1 +
 1 file changed, 1 insertion(+)

diff --git a/quartz/plugins/emitters/componentResources.ts b/quartz/plugins/emitters/componentResources.ts
index 45f26bc..68a24cf 100644
--- a/quartz/plugins/emitters/componentResources.ts
+++ b/quartz/plugins/emitters/componentResources.ts
@@ -163,6 +163,7 @@ export const ComponentResources: QuartzEmitterPlugin<Options> = (opts?: Partial<
             minify: true,
             targets: {
               safari: (15 << 16) | (6 << 8), // 15.6
+              ios_saf: (15 << 16) | (6 << 8), // 15.6
               edge: 115 << 16,
               firefox: 102 << 16,
               chrome: 109 << 16,