You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
432 B
26 lines
432 B
import Aura from "@primevue/themes/aura"; |
|
|
|
// https://nuxt.com/docs/api/configuration/nuxt-config |
|
export default defineNuxtConfig({ |
|
compatibilityDate: "2024-11-01", |
|
css: [ |
|
"primeicons/primeicons.css" |
|
], |
|
devtools: { enabled: true }, |
|
modules: [ |
|
"@nuxt/eslint", |
|
"@primevue/nuxt-module" |
|
], |
|
primevue: { |
|
options: { |
|
theme: { |
|
preset: Aura |
|
} |
|
} |
|
}, |
|
dir: { |
|
public: "../public" |
|
}, |
|
srcDir: "src/", |
|
ssr: false |
|
})
|
|
|