Skip to content

Commit 936e54d

Browse files
committed
Revert "debug"
This reverts commit c645a3b.
1 parent c645a3b commit 936e54d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

plugins/inline.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,13 +174,11 @@ export function inline(userOptions?: Options) {
174174

175175
try {
176176
if (ext === ".svg") {
177-
console.log({ path });
178177
const content = await getContent(path);
179-
console.log({ content });
180178
const div = element.ownerDocument!.createElement("div");
181179
div.innerHTML = content;
182180
const svg = div.firstElementChild;
183-
console.log({ svg });
181+
184182
if (svg) {
185183
const width = parseInt(element.getAttribute("width") || "0");
186184
const height = parseInt(element.getAttribute("height") || "0");

0 commit comments

Comments
 (0)