wrbapp/frontend/nuxt.config.ts
2022-09-30 14:24:36 +02:00

24 lines
573 B
TypeScript

// https://v3.nuxtjs.org/api/configuration/nuxt.config
export default defineNuxtConfig({
ssr: false,
modules: [
'@nuxtjs/tailwindcss',
'nuxt-icon',
'@vueuse/nuxt',
],
build: {
transpile: ['vue-toastification'],
},
meta: {
title: 'WRB App',
charset: 'utf-8',
meta: [
{ name: 'theme-color', content: '#eb6330' }
],
link: [
{ rel: 'manifest', href: '/manifest.json' },
{ rel: 'icon', href: '/favicon.ico', type: 'image/x-icon' }
]
}
})