Skip to content

Commit

Permalink
ci(test): test 4
Browse files Browse the repository at this point in the history
  • Loading branch information
ThornWalli committed Sep 14, 2023
1 parent 59849e3 commit a14c172
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/runtime/tmpl/plugin.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ async function getImageSize (src) {
const blob = await useRequestFetch()(url);
const { imageMeta } = await import('image-meta').then(
module => module.default || module
);console.error(URL.createObjectURL(blob))
);
console.error('blob?',blob)
const data = await fetch(URL.createObjectURL(blob)).then(async res =>
Buffer.from(await res.arrayBuffer())
);
Expand Down

0 comments on commit a14c172

Please sign in to comment.