-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnuxt.config.js
55 lines (55 loc) · 1.07 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
export default {
mode: "universal",
/*
** Headers of the page
*/
head: {
title: "Easy Share",
meta: [
{
charset: "utf-8"
},
{
name: "viewport",
content: "width=device-width, initial-scale=1"
},
{
hid: "description",
name: "description",
content:
"Easily generate Facebook, Twitter, LinkedIn and Email share links"
}
],
link: [
{
rel: "stylesheet",
href:
"https://fonts.googleapis.com/css?family=Merriweather|Montserrat:900|Ubuntu+Mono&display=swap"
}
]
},
/*
** Customize the progress-bar color
*/
loading: {
color: "#fff"
},
/*
** Global CSS
*/
css: ["~/assets/styles/global.scss", "~/assets/styles/_vars.scss"],
/*
** Modules
*/
modules: ["@nuxtjs/pwa"],
/*
** Build configuration
*/
build: {
transpile: ["easy-social-share-links"],
/*
** You can extend webpack config here
*/
extend(config, ctx) {}
}
};