Skip to content

Commit 2308d06

Browse files
committed
Fix production webpack build broken by #1420
1 parent ad11d2b commit 2308d06

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Diff for: webpack/config.prod.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,11 @@ module.exports = [{
9191
}
9292
},
9393
{
94-
test: /fonts\/.*\.(mp3|eot|ttf|woff|woff2)$/,
94+
test: /\.mp3$/,
95+
use: 'file-loader'
96+
},
97+
{
98+
test: /fonts\/.*\.(eot|ttf|woff|woff2)$/,
9599
use: 'file-loader'
96100
},
97101
{

0 commit comments

Comments
 (0)