material_icons.js 220 B

12345678910111213
  1. module.exports = {
  2. test: /\.svg$/,
  3. include: /node_modules\/@material-design-icons/,
  4. issuer: /\.[jt]sx?$/,
  5. use: [
  6. {
  7. loader: '@svgr/webpack',
  8. options: {
  9. svgo: false,
  10. },
  11. },
  12. ],
  13. };