Increase size limit for inlined fonts / icons

This commit is contained in:
j433866 2019-08-13 16:03:52 +01:00
parent ec70d8a3a2
commit e2c7d8c678
1 changed files with 7 additions and 1 deletions

View File

@ -103,11 +103,17 @@ module.exports = {
"sass-loader",
]
},
/**
* The limit for these files has been increased to 60,000 (60KB)
* to ensure the material icons font is inlined.
*
* See: https://github.com/gchq/CyberChef/issues/612
*/
{
test: /\.(ico|eot|ttf|woff|woff2)$/,
loader: "url-loader",
options: {
limit: 10000,
limit: 60000,
name: "[hash].[ext]",
outputPath: "assets"
}