Skip to content

Commit

Permalink
fix: fixed an issue where not all mp3 files were bundled using rollup…
Browse files Browse the repository at this point in the history
… due to an internal limit with rollup of the amount of files being bundled. This is now configured to be infinite.
  • Loading branch information
pepijnverburg committed May 12, 2023
1 parent cb1454b commit 113b36b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions config/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
}),
],
Expand Down

0 comments on commit 113b36b

Please sign in to comment.