wrbapp/frontend/nuxt.config.ts

26 lines
700 B
TypeScript
Raw Normal View History

2022-09-15 19:15:07 +02:00
// https://v3.nuxtjs.org/api/configuration/nuxt.config
export default defineNuxtConfig({
2022-09-29 16:23:51 +02:00
ssr: false,
2022-09-19 09:36:47 +02:00
modules: [
'@nuxtjs/tailwindcss',
'nuxt-icon',
'@vueuse/nuxt',
2022-09-30 21:17:12 +02:00
'@nuxtjs/robots'
2022-09-29 16:23:51 +02:00
],
build: {
transpile: ['vue-toastification'],
},
2022-09-30 14:24:36 +02:00
meta: {
title: 'WRB App',
charset: 'utf-8',
meta: [
2022-09-30 21:17:12 +02:00
{ name: 'theme-color', content: '#eb6330' },
{ name: 'description', content: 'De officiele app voor de Waddinxveense Reddingsbrigade'}
2022-09-30 14:24:36 +02:00
],
link: [
{ rel: 'manifest', href: '/manifest.json' },
{ rel: 'icon', href: '/favicon.ico', type: 'image/x-icon' }
]
}
2022-09-15 19:15:07 +02:00
})