This repository has been archived by the owner on Aug 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgatsby-config.js
69 lines (68 loc) · 2.01 KB
/
gatsby-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
module.exports = {
pathPrefix: "/about-blank-ny",
siteMetadata: {
prefix: `About:`,
title: `blank`,
subtitle: `En form for "personalhåndbok" for ansatte i Blank.`,
description: `Tanken er at denne siden til enhver tid skal reflektere rutiner og ordninger vi har i Blank. Vi har ofte diskusjoner som ender med at vi blir enig om en praksis, og i de tilfellene er det fint å ha et sted å dokumentere. Alle som jobber i Blank er velkommen til å foreslå endringer.`,
author: `clara`,
email: `innboks@blank.no`,
tel: `982 19 394`,
name: 'Blank AS',
adress: 'Youngs gt. 7',
zip: '0108 Oslo',
orgnr:'Org. nr: 915 43 3073',
instagram:'Instagram',
friendly: 'Kontakt oss, eller kom innom!',
},
plugins: [
`gatsby-plugin-sass`,
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `about:blank`,
short_name: `about:blank`,
start_url: `/`,
background_color: `#3C1345`,
theme_color: `#3C1345`,
display: `minimal-ui`,
icon: `src/images/blank-icon-144.png`, // This path is relative to the root of the site.
},
},
`gatsby-transformer-remark`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `content`,
path: `src/content`,
},
},
{
resolve: `gatsby-plugin-anchor-links`,
options: {
offset: -20
}
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
// replace "UA-XXXXXXXXX-X" with your own Tracking ID
trackingId: "UA-66155927-7",
head: true
},
}
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
// `gatsby-plugin-offline`,
],
}