Skip to content

Commit 318d389

Browse files
author
staven
committed
fix: purgecss
1 parent de45817 commit 318d389

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ if (IS_PROD) {
408408
/<style([\s\S]*?)<\/style>+/gim,
409409
''
410410
)
411-
return validSection..match(/[A-Za-z0-9-_/:]*[A-Za-z0-9-_/]+/g) || []
411+
return validSection.match(/[A-Za-z0-9-_/:]*[A-Za-z0-9-_/]+/g) || []
412412
}
413413
},
414414
extensions: ['html', 'vue']
@@ -453,7 +453,7 @@ module.exports = {
453453
/<style([\s\S]*?)<\/style>+/gim,
454454
""
455455
);
456-
return validSection..match(/[A-Za-z0-9-_/:]*[A-Za-z0-9-_/]+/g) || []
456+
return validSection.match(/[A-Za-z0-9-_/:]*[A-Za-z0-9-_/]+/g) || []
457457
}
458458
},
459459
extensions: ["html", "vue"]

0 commit comments

Comments
 (0)