// nuxt.config.js
export default defineNuxtConfig({
// ... other options
- modules: [
- // ...
- [
- '@pinia/nuxt',
- {
- autoImports: [
- // automatically imports `defineStore`
- 'defineStore', // import { defineStore } from 'pinia'
- // automatically imports `defineStore` as `definePiniaStore`
- ['defineStore', 'definePiniaStore'], // import { defineStore as definePiniaStore } from 'pinia'
- ],
- },
+ modules: ['@pinia/nuxt'],
+ pinia: {
+ autoImports: [
+ // automatically imports `defineStore`
+ 'defineStore', // import { defineStore } from 'pinia'
+ ['defineStore', 'definePiniaStore'], // import { defineStore as definePiniaStore } from 'pinia'
],
- ],
+ },
})
```