Initial Commit

This commit is contained in:
2025-11-01 18:42:32 +00:00
parent ce818152d8
commit 6c8f4715a7
16 changed files with 14946 additions and 1 deletions
+32
View File
@@ -0,0 +1,32 @@
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/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",
},
});