Fix webpack deprecation warnings

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2024-06-13 13:16:18 +01:00
parent a0eb94704e
commit 4651bf4eb4
No known key found for this signature in database
GPG key ID: A2B008A5F49F5D0D
2 changed files with 6 additions and 6 deletions

View file

@ -38,7 +38,7 @@ module.exports.pitch = function pitch(request) {
return cb(err);
}
if (entries[0]) {
return cb(null, `module.exports = __webpack_public_path__ + ${JSON.stringify(entries[0].files[0])};`);
return cb(null, `module.exports = __webpack_public_path__ + ${JSON.stringify([...entries[0].files][0])};`);
}
return cb(null, null);
});