feat(*): Add support for mp3 files

This commit is contained in:
Josh Creek
2022-10-07 20:32:32 +01:00
parent ceb78fcc0a
commit 16f733d523
3 changed files with 7 additions and 1 deletions
+5
View File
@@ -76,6 +76,11 @@ module.exports = {
use: 'webpack-webmanifest-loader',
type: 'asset/resource',
},
{
// Add support for audio
test: /\.(mp3)$/i,
type: 'asset/resource',
},
{
// Add inlining of SVG
test: /\.svg$/i,