mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-16 19:37:40 +01:00
12 lines
177 B
JavaScript
12 lines
177 B
JavaScript
/* eslint-disable */
|
|
module.exports = {
|
|
webpack(config) {
|
|
config.module.rules.push({
|
|
test: /\.svg$/,
|
|
use: ["@svgr/webpack"]
|
|
});
|
|
|
|
return config;
|
|
}
|
|
};
|