library_components/index.js

15 lines
273 B
JavaScript
Raw Normal View History

2024-07-09 09:00:50 +00:00
import { defineNuxtModule } from "@nuxt/kit";
2024-07-08 09:15:33 +00:00
2024-07-09 09:00:50 +00:00
import { join } from "pathe";
export default defineNuxtModule({
hooks: {
"components:dirs"(dirs) {
dirs.push({
2024-07-09 09:04:53 +00:00
path: join(__dirname, "components/Ml/Button"),
2024-07-09 09:06:40 +00:00
prefix: 'Ml'
2024-07-09 09:00:50 +00:00
});
},
},
});