@liner-fe/prism 2.6.18 → 2.6.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/illust.js +2 -1
- package/lib/index.js +2 -1
- package/package.json +1 -1
package/lib/illust.js
CHANGED
|
@@ -119,7 +119,8 @@ var Illust = /* @__PURE__ */ __name((props) => {
|
|
|
119
119
|
alt: currentSourceByColorTheme,
|
|
120
120
|
src: source,
|
|
121
121
|
width,
|
|
122
|
-
height: aspectRatio ? width / aspectRatio : width
|
|
122
|
+
height: aspectRatio ? width / aspectRatio : width,
|
|
123
|
+
unoptimized: true
|
|
123
124
|
}
|
|
124
125
|
) });
|
|
125
126
|
}, "Illust");
|
package/lib/index.js
CHANGED
|
@@ -22164,7 +22164,8 @@ var Illust = /* @__PURE__ */ __name((props) => {
|
|
|
22164
22164
|
alt: currentSourceByColorTheme,
|
|
22165
22165
|
src: source,
|
|
22166
22166
|
width,
|
|
22167
|
-
height: aspectRatio ? width / aspectRatio : width
|
|
22167
|
+
height: aspectRatio ? width / aspectRatio : width,
|
|
22168
|
+
unoptimized: true
|
|
22168
22169
|
}
|
|
22169
22170
|
) });
|
|
22170
22171
|
}, "Illust");
|