* Added PrimeVue with TailwindCSS support and modified Homepage to test the changes. * Configured vitest to use PrimeVue and wrote a quick test for home page
19 lines
454 B
TypeScript
19 lines
454 B
TypeScript
import Aura from "@primeuix/themes/aura";
|
|
|
|
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: "2025-07-15",
|
|
devtools: { enabled: true },
|
|
modules: ["@nuxt/eslint", "@nuxtjs/tailwindcss", "@primevue/nuxt-module"],
|
|
primevue: {
|
|
options: {
|
|
ripple: true,
|
|
theme: {
|
|
preset: Aura,
|
|
options: {
|
|
darkModeSelector: "system",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|