mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-22 15:29:20 +01:00
12 lines
242 B
JavaScript
12 lines
242 B
JavaScript
import { join } from 'path';
|
|
|
|
export default function() {
|
|
this.nuxt.hook('components:dirs', dirs => {
|
|
dirs.push({
|
|
path: join(__dirname, 'dist', 'esm', 'icons'),
|
|
prefix: 'Icon',
|
|
ignore: ['**/index.js'],
|
|
});
|
|
});
|
|
}
|