diff options
Diffstat (limited to 'scripts/client.js')
-rw-r--r-- | scripts/client.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/client.js b/scripts/client.js index bc68547b..54a30863 100644 --- a/scripts/client.js +++ b/scripts/client.js @@ -226,7 +226,9 @@ const processFile = async (asset) => { ...[...text.matchAll(/\.exports=.\..\+"(.*?\..{0,5})"/g)].map( (x) => x[1], ), // anything that looks like e.exports="filename.ext" - ...[...text.matchAll(/\/assets\/(.*?\.[a-z]{0,5})/g)].map((x) => x[1]), // commonly matches `background: url(/assets/blah.svg)` + ...[...text.matchAll(/\/assets\/(.*?\.[a-z0-9]{0,5})/g)].map( + (x) => x[1], + ), // commonly matches `background: url(/assets/blah.svg)` ]); return [...ret].map((x) => x.replaceAll('"', "")); |