knowyt/client/nuxt.config.js
2021-07-30 16:54:40 +02:00

19 lines
381 B
JavaScript

export default {
ssr: false,
target: 'static',
head: {
title: 'Know Your Teammates',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
]
},
components: true,
buildModules: [
'@nuxtjs/eslint-module',
],
}