13 lines
263 B
TypeScript
13 lines
263 B
TypeScript
|
// 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: [],
|
||
|
})
|