-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
41 lines (36 loc) · 1.4 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
app: {
head: {
charset: 'utf-8',
title: 'Piotr Garbicz // Developer',
meta: [
{ name: 'format-detection', content: 'telephone=no' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ name: 'theme-color', content: '#0D0D0D' },
{ name: 'description', content: 'Ruby on Rails & JS fintech developer with nearly 5 years of experience and bachelor\'s degree in jazz.' },
{ name: 'keywords', content: 'developer frontend backend piotr garbicz vue ruby rails nuxt' },
{ name: 'og:title', content: 'Piotr Garbicz // Developer' },
{ name: 'og:description', content: 'Ruby on Rails & JS fintech developer with nearly 5 years of experience and bachelor\'s degree in jazz.' },
{ name: 'og:url', content: 'https://piotrgarbicz.dev' },
{ name: 'og:image', content: './ogimage.png' }
],
link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.png' }],
htmlAttrs: { lang: 'en' }
}
},
css: [
'~/assets/style/main.scss'
],
vite: {
css: {
preprocessorOptions: {
scss: {
additionalData: '@import "~/assets/style/variables.scss", "~/assets/style/helpers.scss";'
}
}
}
}
});