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-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: [
|
|
|
|
{ name: 'theme-color', content: '#eb6330' }
|
|
|
|
],
|
|
|
|
link: [
|
|
|
|
{ rel: 'manifest', href: '/manifest.json' },
|
|
|
|
{ rel: 'icon', href: '/favicon.ico', type: 'image/x-icon' }
|
|
|
|
]
|
|
|
|
}
|
2022-09-15 19:15:07 +02:00
|
|
|
})
|