chore(webpack): add file-loader to webpack config

This commit is contained in:
Eric Liu 2020-01-09 09:50:23 -08:00
commit 959f7101d9

View file

@ -41,6 +41,10 @@ module.exports = {
}, },
'sass-loader' 'sass-loader'
] ]
},
{
test: /\.(png|jpe?g|svg)$/i,
use: [{ loader: 'file-loader' }]
} }
] ]
}, },