wrbapp/frontend/nuxt.config.ts
Xeovalyte 1ca08ee8b5
All checks were successful
Build and Deploy / Deploy (push) Successful in 1m44s
Changed name
2023-05-10 12:36:54 +02:00

43 lines
1.0 KiB
TypeScript

// https://v3.nuxtjs.org/api/configuration/nuxt.config
export default defineNuxtConfig({
ssr: false,
imports: {
dirs: ['stores']
},
modules: [
'@nuxtjs/tailwindcss',
'nuxt-icon',
'@vueuse/nuxt',
'@nuxtjs/robots',
'@nuxtjs/plausible',
[ '@pinia/nuxt', { autoImports: [ 'defineStore' ]} ],
],
plausible: {
domain: 'app.reddingsbrigadewaddinxveen.nl',
apiHost: 'https://plausible.xeovalyte.dev',
},
build: {
transpile: ['vue-toastification'],
},
app: {
head: {
title: 'WRB App',
charset: 'utf-8',
viewport: 'width=device-width initial-scale=1 viewport-fit=cover',
meta: [
{ name: 'theme-color', content: '#eb6330' },
{ name: 'description', content: 'De officiele app voor de Waddinxveense Reddingsbrigade'}
],
link: [
{ rel: 'manifest', href: '/manifest.json' },
{ rel: 'icon', href: '/favicon.ico', type: 'image/x-icon' }
]
}
},
runtimeConfig: {
privateKeyId: '',
privateKey: '',
clientId: ''
}
})