feat: Base for the actuall profile page.
This commit is contained in:
+27
-24
@@ -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",
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user