Opti1337
cc0fc13460
All checks were successful
Gitea Actions Demo / build-and-deploy (push) Successful in 24s
31 lines
636 B
TypeScript
31 lines
636 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
devtools: { enabled: true },
|
|
app: {
|
|
head: {
|
|
title: 'KPTL',
|
|
meta: [
|
|
{
|
|
property: 'og:title',
|
|
content: 'KPTL',
|
|
},
|
|
{
|
|
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'],
|
|
})
|