UNPKG

react-iconslab

Version:

This package contains a set of commonly used SVG icons: **Email**, **User Profile**, and **Delete** as React components.

20 lines (19 loc) 369 B
// webpack.config.js module.exports = { module: { rules: [ { test: /\.svg$/, use: ["@svgr/webpack"], }, // You can also include other rules for JS/JSX, CSS, etc. { test: /\.js$/, exclude: /node_modules/, use: { loader: "babel-loader", }, }, ], }, };