22 lines
555 B
TypeScript
22 lines
555 B
TypeScript
|
// https://nuxt.com/docs/api/configuration/nuxt-config
|
||
|
export default defineNuxtConfig({
|
||
|
app: {
|
||
|
head: {
|
||
|
title: 'Blackbird Chess',
|
||
|
htmlAttrs: {
|
||
|
lang: 'en'
|
||
|
},
|
||
|
meta: [
|
||
|
{charset: 'utf-8'},
|
||
|
{name: 'viewport', content: 'width=device-width, initial-scale=1'}
|
||
|
],
|
||
|
link: [
|
||
|
{rel: 'icon', type: 'image/x-icon', href: '/favicon.ico'}
|
||
|
]
|
||
|
},
|
||
|
},
|
||
|
modules: [
|
||
|
'@nuxtjs/tailwindcss'
|
||
|
]
|
||
|
})
|