From 113b36b2e9b68b520c883fa74c709fe8cbaa671e Mon Sep 17 00:00:00 2001 From: Pepijn Verburg Date: Fri, 12 May 2023 16:03:30 +0200 Subject: [PATCH] fix: fixed an issue where not all mp3 files were bundled using rollup due to an internal limit with rollup of the amount of files being bundled. This is now configured to be infinite. --- config/rollup.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/config/rollup.config.js b/config/rollup.config.js index f04bd35..978107c 100644 --- a/config/rollup.config.js +++ b/config/rollup.config.js @@ -16,6 +16,7 @@ module.exports = [{ plugins: [ typescript(), url({ + limit: Infinity, // required to prevent a maximum amount of files to not be bundled include: ['**/*.ogg', '**/*.mp3', '**/*.aac'], }), ],