mirror of
https://github.com/HoshinoSuzumi/rayine-ui.git
synced 2025-04-15 04:18:50 +08:00
19 lines
397 B
TypeScript
19 lines
397 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
devtools: { enabled: true },
|
|
compatibilityDate: "2024-11-15",
|
|
modules: ["@nuxtjs/tailwindcss"],
|
|
components: [
|
|
{
|
|
path: "./components",
|
|
prefix: "Ray",
|
|
pathPrefix: false,
|
|
},
|
|
{
|
|
path: "./components/icons",
|
|
prefix: "Icon",
|
|
pathPrefix: false,
|
|
},
|
|
],
|
|
});
|