-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathgatsby-config.js
68 lines (67 loc) · 2.88 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
const docsWebsite = "https://awslabs.github.io/aws-lambda-powertools-java"
module.exports = {
pathPrefix: '/aws-lambda-powertools-java',
siteMetadata: {
title: 'AWS Lambda Powertools Java',
description: 'A suite of utilities for AWS Lambda Functions that makes tracing with AWS X-Ray, structured logging and creating custom metrics asynchronously easier',
author: `Amazon Web Services`,
siteName: 'AWS Lambda Powertools Java',
siteUrl: `${docsWebsite}`
},
plugins: [
{
resolve: 'gatsby-theme-apollo-docs',
options: {
root: __dirname,
menuTitle: 'Helpful resources',
githubRepo: 'awslabs/aws-lambda-powertools-java',
baseUrl: `${docsWebsite}`,
logoLink: `${docsWebsite}`,
sidebarCategories: {
null: [
'index'
],
'Core utilities': [
'core/logging',
'core/tracing'
]
},
navConfig: {
'Serverless Best Practices video': {
url: 'https://www.youtube.com/watch?v=9IYpGTS7Jy0',
description: 'AWS re:Invent ARC307: Serverless architectural patterns & best practices - Origins of Powertools',
},
'AWS Well-Architected Serverless Lens': {
url: 'https://d1.awsstatic.com/whitepapers/architecture/AWS-Serverless-Applications-Lens.pdf',
description: 'AWS Well-Architected Serverless Applications Lens whitepaper',
},
'Amazon Builders Library': {
url: 'https://aws.amazon.com/builders-library/',
description: 'Collection of living articles covering topics across architecture, software delivery, and operations'
},
'AWS CDK Patterns': {
url: 'https://cdkpatterns.com/patterns/',
description: "CDK Patterns maintained by Matt Coulter (@nideveloper)"
}
},
footerNavConfig: {
Serverless: {
href: 'https://aws.amazon.com/serverless/'
},
'AWS SAM Docs': {
href: 'https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/what-is-sam.html',
}
}
}
},
{
resolve: `gatsby-plugin-catch-links`,
options: {
excludePattern: /\/aws-lambda-powertools-java/,
},
},
'gatsby-plugin-antd',
'gatsby-remark-autolink-headers',
'gatsby-plugin-sitemap'
]
};