-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathnuxt.config.js
40 lines (40 loc) · 1.13 KB
/
nuxt.config.js
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
export default {
mode: "spa",
target: "static",
rootDir: "./",
srcDir: "src",
head: {
title: "EGGSY | Young JavaScript Developer",
meta: [
{ charset: "utf-8" },
{ name: "viewport", content: "width=device-width, initial-scale=1" },
{
name: "description",
content:
"Check out my little portfolio and learn more about me before checking my other projects! This page will help you a lot about learning more about who's EGGSY."
},
{
name: "og:description",
content:
"Check out my little portfolio and learn more about me before checking my other projects! This page will help you a lot about learning more about who's EGGSY."
},
{
name: "og:site_name",
content: "eggsy.js.org"
}
],
link: [
{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" },
{
rel: "stylesheet",
href: "https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css"
}
]
},
css: [],
plugins: [],
components: true,
modules: ["nuxt-fullpage.js"],
buildModules: ["@nuxtjs/color-mode"],
build: {}
};