koptilnya.xyz/nuxt.config.ts
Opti1337 cee1e8104c
All checks were successful
Gitea Actions Demo / build-and-deploy (push) Successful in 24s
Meta Tags
2024-03-01 13:12:43 +03:00

46 lines
972 B
TypeScript

// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },
app: {
head: {
title: 'KPTL',
htmlAttrs: {
prefix: 'og: http://ogp.me/ns#',
},
meta: [
{
name: 'description',
content: 'Team Koptilnya',
},
{
property: 'og:type',
content: 'website',
},
{
property: 'og:title',
content: 'KPTL',
},
{
property: 'og:description',
content: 'Team Koptilnya',
},
{
property: 'og:url',
content: 'https://koptilnya.xyz',
},
{
property: 'og:image',
content: 'https://koptilnya.xyz/logo.png',
},
],
},
},
modules: ['@nuxtjs/google-fonts'],
googleFonts: {
families: {
Montserrat: [300, 400, 500, 700],
},
},
css: ['@/assets/styles.scss'],
})