-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.js
195 lines (180 loc) · 4.95 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
export default {
// Target (https://go.nuxtjs.dev/config-target)
target: "static",
// Global page headers (https://go.nuxtjs.dev/config-head)
head: {
title: "Saabbir Hossain",
htmlAttrs: {
lang: "en",
},
bodyAttrs: {
// class: ['dark-mode', 'mobile']
},
noscript: [{ innerHTML: "This website requires JavaScript." }],
meta: [
// Primary Meta Tags
{ charset: "utf-8" },
{ name: "viewport", content: "width=device-width, initial-scale=1" },
{
hid: "title",
name: "title",
content: "Saabbir Hossain",
},
{
hid: "description",
name: "description",
content:
"Saabbir Hossain is a professional front-end developer from Bangladesh, currently working as a Solutions Engineer at EchoLogyx Ltd.",
},
// Open Graph / Facebook
{
hid: "og:type",
property: "og:type",
content: "website",
},
{
hid: "og:url",
property: "og:url",
content: "https://saabbir.github.io/",
},
{
hid: "og:title",
property: "og:title",
content: "Saabbir Hossain",
},
{
hid: "og:description",
property: "og:description",
content:
"Saabbir Hossain is a professional front-end developer from Bangladesh, currently working as a Solutions Engineer at EchoLogyx Ltd.",
},
{
hid: "og:image",
property: "og:image",
content:
"https://raw.githubusercontent.com/Saabbir/saabbir.github.io/master/assets/images/saabbir.png",
},
// Twitter
{
hid: "twitter:card",
property: "twitter:card",
content: "summary_large_image",
},
{
hid: "twitter:url",
property: "twitter:url",
content: "https://saabbir.github.io/",
},
{
hid: "twitter:title",
property: "twitter:title",
content: "Saabbir Hossain",
},
{
hid: "twitter:description",
property: "twitter:description",
content:
"Saabbir Hossain is a professional front-end developer from Bangladesh, currently working as a Solutions Engineer at EchoLogyx Ltd.",
},
{
hid: "twitter:image",
property: "twitter:image",
content:
"https://raw.githubusercontent.com/Saabbir/saabbir.github.io/master/assets/images/saabbir.png",
},
],
// Favicon
link: [{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" }],
script: [
// Load external script
{
src: "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js",
},
// Load internal script and put the script in the static directory
{
src: "/js/global-client-side.js",
body: true,
},
],
},
// Global CSS (https://go.nuxtjs.dev/config-css)
css: [
// 'tailwindcss/dist/tailwind.min.css',
"normalize.css/normalize.css",
"~assets/scss/index.scss",
],
/*
** Global style resources - https://www.npmjs.com/package/@nuxtjs/style-resources
*/
styleResources: {
scss: ["~/assets/scss/01-config/config.scss"],
},
loading: {
color: "#108775",
// height: '5px'
},
// Plugins to run before rendering page (https://go.nuxtjs.dev/config-plugins)
plugins: [
// {
// src: "~plugins/drift.js",
// mode: "client"
// }
],
// Auto import components (https://go.nuxtjs.dev/config-components)
components: true,
// Modules for dev and build (recommended) (https://go.nuxtjs.dev/config-modules)
buildModules: [
"@nuxtjs/google-analytics",
// Consult https://github.com/juliomrqz/nuxt-optimized-images
"@aceforth/nuxt-optimized-images",
"@nuxtjs/fontawesome",
],
// Consult https://google-analytics.nuxtjs.org/setup/#configure
googleAnalytics: {
id: "UA-104844719-1",
},
// Consult https://github.com/juliomrqz/nuxt-optimized-images
optimizedImages: {
optimizeImages: true,
},
optimizeImagesInDev: true,
// Fontawesome settings
fontawesome: {
icons: {
solid: ["faBars", "faExternalLinkAlt", "faTimes", "faStream"],
},
},
// Modules (https://go.nuxtjs.dev/config-modules)
modules: [
// https://go.nuxtjs.dev/axios
"@nuxtjs/axios",
// https://go.nuxtjs.dev/content
"@nuxt/content",
"@nuxtjs/style-resources",
"@nuxtjs/google-fonts",
],
googleFonts: {
prefetch: true,
preconnect: true,
preload: true,
display: "swap",
families: {
Merriweather: [700],
Nunito: [400, 700, 900],
},
// download: true,
// base64: true
},
// Axios module configuration (https://go.nuxtjs.dev/config-axios)
axios: {},
// Content module configuration (https://go.nuxtjs.dev/config-content)
content: {
markdown: {
prism: {
theme: "prism-themes/themes/prism-material-oceanic.css",
},
},
},
// Build Configuration (https://go.nuxtjs.dev/config-build)
build: {},
};