@iconscout/react-unicons
Version:
4,500+ vector icons as easy to use React Components
23 lines (21 loc) • 374 B
JavaScript
const path = require("path");
module.exports = {
entry: "./index.js",
output: {
path: path.resolve(__dirname, "lib", "cjs"),
filename: "index.js",
globalObject: "this",
library: {
type: "umd",
},
clean: true,
},
externals: {
react: "react",
},
mode: "production",
optimization: {
minimize: true,
},
target: "web",
};