This commit is contained in:
carlosrcoelho 2023-07-18 14:59:27 -03:00
commit 5d2a29a436
223 changed files with 6210 additions and 20294 deletions

View file

@ -1,18 +0,0 @@
module.exports = function(context, options) {
return {
name: 'loaders',
configureWebpack(config, isServer) {
return {
module: {
rules: [
{
test: /\.(gif|png|jpe?g|svg)$/i,
exclude: /\.(mdx?)$/i,
use: ['file-loader', { loader: 'image-webpack-loader' }],
},
],
},
};
},
};
};