wrbapp/frontend/nuxt.config.ts
Xeovalyte a925692ff2
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
added plausible
2023-01-27 19:19:39 +01:00

39 lines
1017 B
TypeScript

// https://v3.nuxtjs.org/api/configuration/nuxt.config
export default defineNuxtConfig({
ssr: false,
modules: [
'@nuxtjs/tailwindcss',
'nuxt-icon',
'@vueuse/nuxt',
'@nuxtjs/robots',
'@nuxtjs/plausible',
],
plausible: {
domain: 'wrbapp.xeovalyte.com',
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: ''
}
})