-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
50 lines (44 loc) · 2.06 KB
/
nuxt.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },
modules: ["@nuxt/ui", "@nuxt/fonts", '@nuxt/image'],
fonts: {
families: [
{ name: 'Poppins', provider: 'google' }
]
},
colorMode: {
preference: 'light'
},
app: {
head: {
title: 'Muntaser Muttaqi | Full-stack Developer',
charset: 'utf-8',
viewport: 'width=device-width, initial-scale=1',
link: [
{ rel: 'apple-touch-icon', href: '/apple-touch-icon.png', sizes: '180x180' },
{ rel: 'icon', type: 'image/png', href: '/favicon-32x32.png', sizes: '32x32' },
{ rel: 'icon', type: 'image/png', href: '/favicon-16x16.png', sizes: '16x16' },
{ rel: 'manifest', href: '/site.webmanifest' }
],
meta: [
{ name: 'description', content: 'Full-stack Developer with over three years of experience in building modern web applications.' },
{ property: 'og:site_name', content: 'Muntaser Muttaqi | Full-stack Developer' },
{ property: 'keywords', content: 'muntaser muttaqi, muttaqi, web developer, full stack developer, web developer bangladesh, laravel, livewire, inertiajs, vuejs, tailwindcss, laravel bangladesh' },
{ property: 'author', content: 'Muntaser Muttaqi | Full-stack Developer' },
{ property: 'og:title', content: 'Muntaser Muttaqi | Full-stack Developer' },
{ property: 'og:type', content: 'Resume' },
{ property: 'og:url', content: 'https://iammuttaqi.github.io' },
{ property: 'og:image', content: '/avatar.png' },
{ property: 'twitter:title', content: 'Muntaser Muttaqi | Full-stack Developer' },
{ property: 'twitter:description', content: 'Full-stack Developer with over three years of experience in building modern web applications.' },
{ property: 'twitter:image', content: '/avatar.png' },
{ property: 'twitter:card', content: 'summary_large_image' },
{ property: 'twitter:site', content: '@iammuttaqi' },
]
}
},
image: {
},
compatibilityDate: '2024-10-23'
})