windows/nuxt.config.ts

13 lines
263 B
TypeScript
Raw Normal View History

2025-09-23 16:43:57 +00:00
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },
// Register the Pinia module
modules: [
'@pinia/nuxt',
],
// Global CSS - We will import this in app.vue instead
css: [],
})