-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathgatsby-config.js
84 lines (82 loc) · 2.11 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
const gatsbyConfig = {
siteMetadata: {
title: "Mva-meldingen",
menu: [
{
href: "/",
name: "Modernisering av Mva-området",
},
{
href: "/documentation",
name: "Felles ",
},
{
href: "/mvameldingen",
name: "Mva-meldingen ",
},
{
href: "/kompensasjon",
name: "Kompensasjonsmeldingen",
},
{
href: "/omvendt",
name: "Omvendt avgiftsplikt",
},
// {
// href: "/frontpage_eng",
// name: "Frontpage in English",
// },
{
href: "/english",
name: "Documentation in English",
},
// {
// href: "/mvameldingen_eng",
// name: "VAT report",
// },
// {
// href: "/kompensasjon_eng",
// name: "VAT Compensation",
// },
// {
// href: "/omvendt_eng",
// name: "Reverse Tax Liability",
// },
],
},
pathPrefix: "/mva-meldingen",
plugins: [
"gatsby-plugin-react-helmet",
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/docs`,
name: "markdown-pages",
},
},
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
`gatsby-remark-prismjs`,
`gatsby-remark-autolink-headers`,
{
resolve: "gatsby-remark-copy-linked-files",
options: {
// `ignoreFileExtensions` defaults to [`png`, `jpg`, `jpeg`, `bmp`, `tiff`]
// as we assume you'll use gatsby-remark-images to handle
// images in markdown as it automatically creates responsive
// versions of images.
//
// If you'd like to not use gatsby-remark-images and just copy your
// original images to the public directory, set
// `ignoreFileExtensions` to an empty array.
ignoreFileExtensions: [],
},
},
],
},
},
],
};
module.exports = gatsbyConfig;