2024-02-29 17:47:16 +03:00
|
|
|
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
|
|
export default defineNuxtConfig({
|
|
|
|
devtools: { enabled: true },
|
2024-03-01 12:57:18 +03:00
|
|
|
app: {
|
|
|
|
head: {
|
|
|
|
title: 'KPTL',
|
|
|
|
meta: [
|
2024-03-01 13:08:56 +03:00
|
|
|
{
|
|
|
|
name: 'description',
|
|
|
|
content: 'Team Koptilnya',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
property: 'og:type',
|
|
|
|
content: 'website',
|
|
|
|
},
|
2024-03-01 12:57:18 +03:00
|
|
|
{
|
|
|
|
property: 'og:title',
|
|
|
|
content: 'KPTL',
|
|
|
|
},
|
2024-03-01 13:08:56 +03:00
|
|
|
{
|
|
|
|
property: 'og:description',
|
|
|
|
content: 'Team Koptilnya',
|
|
|
|
},
|
2024-03-01 12:57:18 +03:00
|
|
|
{
|
|
|
|
property: 'og:url',
|
|
|
|
content: 'https://koptilnya.xyz',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
property: 'og:image',
|
|
|
|
content: 'https://koptilnya.xyz/logo.png',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2024-02-29 17:47:16 +03:00
|
|
|
modules: ['@nuxtjs/google-fonts'],
|
|
|
|
googleFonts: {
|
|
|
|
families: {
|
2024-03-01 12:31:16 +03:00
|
|
|
Montserrat: [300, 400, 500, 700],
|
2024-02-29 17:47:16 +03:00
|
|
|
},
|
|
|
|
},
|
|
|
|
css: ['@/assets/styles.scss'],
|
|
|
|
})
|