From 0dcd1cfcc4c66ed62273fcf6796dcff1fc3dec37 Mon Sep 17 00:00:00 2001 From: AfonsoCMSousa Date: Fri, 16 Jan 2026 18:12:55 +0000 Subject: [PATCH] fix: i hate my live --- nuxt.config.ts | 47 +++++++++++++++++++++++++++++++++-------------- 1 file changed, 33 insertions(+), 14 deletions(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index 2d111ff..8e93e9a 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -1,20 +1,39 @@ import tailwindcss from "@tailwindcss/vite"; export default defineNuxtConfig({ - compatibilityDate: "2026-01-01", - devtools: { enabled: true }, +<<<<<<< HEAD + compatibilityDate: "2026-01-01", + devtools: { enabled: true }, - css: ["~/assets/css/tailwind.css"], - - vite: { - plugins: [tailwindcss()], - }, - - runtimeConfig: { - public: { - apiBase: "http://localhost:8080/academics/api/v1", + css: [ + "~/assets/css/main.css", + "~/assets/css/tailwind.css" + ], + vite: { + plugins: [tailwindcss()], }, - }, - modules: ["@pinia/nuxt"], -}); \ No newline at end of file + runtimeConfig: { + public: { + apiBase: "http://localhost:8080/academics/api/v1", + }, + }, + + modules: [ + "@nuxt/fonts", + "@nuxt/icon", + "@nuxt/image", + "@nuxt/eslint", + "shadcn-nuxt", + "@pinia/nuxt", + ], + + shadcn: { + prefix: "", + /** + * Directory that the component lives in. + * @default "./app/components/ui" + */ + componentDir: "./app/components/ui", + }, +});