-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
73 lines (72 loc) · 2.39 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import { defineNuxtConfig } from "nuxt/config";
// https://v3.nuxtjs.org/docs/directory-structure/nuxt.config
export default defineNuxtConfig({
app: {
head: {
htmlAttrs: {
lang: "en",
},
title: "Software Engineer Portfolio | Uriel David",
meta: [
{
name: "viewport",
content: "width=device-width, initial-scale=1, viewport-fit=cover",
},
{
name: "description",
content:
"Personal Portfolio Website. Hi, Uriel David. I'm a Software Engineer based in Porto, Portugal. Currently focused on developing website/products using PHP/Laravel - Vue/React. Checkout my projects and github repositories",
},
{ name: "format-detection", content: "telephone=no" },
{ property: "author", content: "Uriel David" },
{
name: "keywords",
content:
"Web Developer, Full Stack Developer, Full-Stack Developer, Software Engineer, Senior Software Developer, Uriel David, Uriel, zinrax, Portugal",
},
// social meta tags
{
property: "og:site_name",
content: "Software Engineer Portfolio | Uriel David",
},
{
property: "og:site",
content: "https://www.eazypau.com/",
},
{
property: "og:title",
content: "Software Engineer Portfolio | Uriel David",
},
{
property: "og:description",
content:
"Personal Portfolio Website. Hi, Uriel David. I'm a Software Engineer based in Porto, Portugal. Currently focused on developing website/products using PHP/Laravel - Vue/React. Checkout my projects and github repositories",
},
// sharing thumbmail img
{
property: "og:image",
content: "https://www.uriel-portfolio.com/favicon-bw.png", ///favicon-wb.png
},
// google site verification - TO DO
/* {
name: "google-site-verification",
content: "",
}, */
],
link: [{ rel: "icon", href: "/favicon-bw.png" }],
},
},
modules: ["@nuxtjs/tailwindcss"],
/** @type {import('tailwindcss').Config} */
tailwindcss: {
cssPath: "~/assets/css/tailwind.scss",
},
build: {
transpile: ["gsap", "@headlessui/vue", "@heroicons/vue"],
},
runtimeConfig: {
public: {
NUXT_GTM_ID: process.env.NUXT_GTM_ID,
},
},
});