2022-09-15 19:15:07 +02:00
|
|
|
// https://v3.nuxtjs.org/api/configuration/nuxt.config
|
|
|
|
export default defineNuxtConfig({
|
2023-03-20 11:23:46 +01:00
|
|
|
ssr: false,
|
|
|
|
imports: {
|
|
|
|
dirs: ['stores']
|
|
|
|
},
|
|
|
|
modules: [
|
|
|
|
'@nuxtjs/tailwindcss',
|
|
|
|
'nuxt-icon',
|
|
|
|
'@vueuse/nuxt',
|
|
|
|
'@nuxtjs/robots',
|
|
|
|
'@nuxtjs/plausible',
|
|
|
|
[ '@pinia/nuxt', { autoImports: [ 'defineStore' ]} ],
|
|
|
|
],
|
|
|
|
plausible: {
|
2023-05-10 12:36:54 +02:00
|
|
|
domain: 'app.reddingsbrigadewaddinxveen.nl',
|
2023-03-20 11:23:46 +01:00
|
|
|
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' }
|
|
|
|
]
|
|
|
|
}
|
2023-01-21 21:36:22 +01:00
|
|
|
},
|
|
|
|
runtimeConfig: {
|
|
|
|
privateKeyId: '',
|
|
|
|
privateKey: '',
|
|
|
|
clientId: ''
|
2022-11-29 18:14:11 +01:00
|
|
|
}
|
2022-09-15 19:15:07 +02:00
|
|
|
})
|