© 2026 Hedgehog Software, LLC
~/modules/material-design-icons
import { resolve } from 'path' const icons = ["ChevronRight", "ChevronDown"]; export default function () { this.nuxt.hook("components:dirs", (dirs) => { dirs.push({ path: resolve("node_modules/vue-material-design-icons"), prefix: "MaterialIcon", pattern: `**/@(${icons.join("|")}).vue` }); }); }