36 lines
765 B
TypeScript
36 lines
765 B
TypeScript
import tailwindcss from "@tailwindcss/vite";
|
|
|
|
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: "2025-07-15",
|
|
devtools: { enabled: true },
|
|
|
|
css: [
|
|
"~/assets/css/main.css",
|
|
"~/assets/css/tailwind.css"
|
|
],
|
|
vite: {
|
|
plugins: [tailwindcss()],
|
|
},
|
|
|
|
modules: [
|
|
"@nuxt/fonts",
|
|
"@nuxt/icon",
|
|
"@nuxt/image",
|
|
"@nuxt/eslint",
|
|
"shadcn-nuxt",
|
|
],
|
|
|
|
shadcn: {
|
|
/**
|
|
* Prefix for all the imported component
|
|
*/
|
|
prefix: "",
|
|
/**
|
|
* Directory that the component lives in.
|
|
* @default "./app/components/ui"
|
|
*/
|
|
componentDir: "./app/components/ui",
|
|
},
|
|
});
|