34 lines
826 B
TypeScript
34 lines
826 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
|
|
},
|
|
app: {
|
|
head: {
|
|
script: [
|
|
{
|
|
src: "https://umami.erudi.fr/script.js",
|
|
defer: true,
|
|
"data-website-id": "93b97d68-8f3c-476a-888f-13876e73de1f",
|
|
},
|
|
],
|
|
},
|
|
},
|
|
})
|