-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgatsby-config.js
More file actions
101 lines (100 loc) · 2.34 KB
/
gatsby-config.js
File metadata and controls
101 lines (100 loc) · 2.34 KB
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
const siteMetadata = require("./site-metadata.json");
module.exports = {
pathPrefix: "/",
siteMetadata: siteMetadata,
plugins: [
"gatsby-plugin-react-helmet",
"gatsby-source-data",
"gatsby-plugin-sitemap",
"gatsby-plugin-netlify",
{
resolve: "gatsby-source-filesystem",
options: {
name: "pages",
path: `${__dirname}/src/pages`,
},
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "images",
path: `${__dirname}/static/images`,
},
},
"gatsby-plugin-sharp",
"gatsby-transformer-sharp",
{
resolve: "gatsby-plugin-sass",
options: {},
},
{
resolve: "gatsby-remark-page-creator",
options: {},
},
{
resolve: "@stackbit/gatsby-plugin-menus",
options: {
sourceUrlPath: "fields.url",
pageContextProperty: "menus",
},
},
{
resolve: "gatsby-plugin-web-font-loader",
options: {
google: {
families: ["Roboto:400,400i,700,700i&display=swap"],
},
},
},
{
resolve: "gatsby-plugin-manifest",
options: {
name: "Rakibul Hasan - Full-stack JavaScript Developer",
short_name: "Rakibul Hasan",
start_url: "/",
background_color: "#2e3440",
theme_color: "#a2466c",
display: "standalone",
icon: "static/images/logo.png",
cache_busting_mode: "none",
},
},
{
resolve: "gatsby-plugin-offline",
options: {
precachePages: ["/about/", "/contact/", "/thank-you/", "/blog/", "/posts/*", "/"],
workboxConfig: {
globPatterns: ["**/icon*"],
},
},
},
{
resolve: "gatsby-transformer-remark",
options: {
plugins: [
{
resolve: "gatsby-remark-prismjs",
options: {
inlineCodeMarker: ">",
aliases: {},
showLineNumbers: false,
noInlineHighlight: false,
prompt: {
user: "raikusy",
host: "dev",
global: false,
},
escapeEntities: {},
},
},
{
resolve: "gatsby-remark-images",
options: {
maxWidth: 1080,
},
},
],
},
},
],
};