feat: Base for the actuall profile page.

This commit is contained in:
AfonsoCMSousa
2026-01-15 19:01:28 +00:00
parent 1d08dd6a0c
commit 951bed6fbf
3 changed files with 438 additions and 26 deletions
+27 -24
View File
@@ -2,31 +2,34 @@ import tailwindcss from "@tailwindcss/vite";
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: "2025-07-15",
devtools: { enabled: true },
compatibilityDate: "2025-07-15",
devtools: { enabled: true },
css: ["~/assets/css/tailwind.css"],
vite: {
plugins: [tailwindcss()],
},
css: [
"~/assets/css/main.css",
"~/assets/css/tailwind.css"
],
vite: {
plugins: [tailwindcss()],
},
modules: [
"@nuxt/fonts",
"@nuxt/icon",
"@nuxt/image",
"@nuxt/eslint",
"shadcn-nuxt",
],
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",
},
shadcn: {
/**
* Prefix for all the imported component
*/
prefix: "",
/**
* Directory that the component lives in.
* @default "./app/components/ui"
*/
componentDir: "./app/components/ui",
},
});