fix: add inlineLimit

This commit is contained in:
winixt 2023-03-23 18:49:08 +08:00
parent 372f103275
commit e38f0be344

View File

@ -114,7 +114,12 @@ export default async function getConfig({
webpackConfig.module
.rule('image')
.test(/\.(png|jpe?g|gif|webp|ico)(\?.*)?$/)
.type('asset/resource');
.type('asset')
.parser({
dataUrlCondition: {
maxSize: config.inlineLimit || 8 * 1024
}
});
webpackConfig.module
.rule('svg')