2023-08-02 15:24:32 +00:00
|
|
|
module.exports = {
|
|
|
|
test: /\.svg$/,
|
2024-01-12 20:16:48 +00:00
|
|
|
include: [/material-icons/, /svg-icons/],
|
2023-08-02 15:24:32 +00:00
|
|
|
issuer: /\.[jt]sx?$/,
|
|
|
|
use: [
|
|
|
|
{
|
|
|
|
loader: '@svgr/webpack',
|
|
|
|
options: {
|
|
|
|
svgo: false,
|
2023-10-24 17:45:08 +00:00
|
|
|
titleProp: true,
|
2023-08-02 15:24:32 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|