23 lines
603 B
TypeScript
23 lines
603 B
TypeScript
export default defineNuxtConfig({
|
|
runtimeConfig: {
|
|
version: '0.0.1'
|
|
},
|
|
modules: ['@nuxtjs/tailwindcss', 'nuxt-svgo', '@huntersofbook/naive-ui-nuxt',
|
|
[
|
|
'@pinia/nuxt',
|
|
{
|
|
autoImports: [
|
|
// automatically imports `defineStore`
|
|
'defineStore', // import { defineStore } from 'pinia'
|
|
// automatically imports `defineStore` as `definePiniaStore`
|
|
['defineStore', 'definePiniaStore'] // import { defineStore as definePiniaStore } from 'pinia'
|
|
]
|
|
}
|
|
]
|
|
],
|
|
extends: ['@sidebase/core'],
|
|
typescript: {
|
|
shim: false
|
|
}
|
|
})
|