-
Notifications
You must be signed in to change notification settings - Fork 421
/
Copy pathgatsby-config.js
75 lines (75 loc) · 3.33 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
module.exports = {
pathPrefix: '/aws-lambda-powertools-python',
siteMetadata: {
title: 'AWS Lambda Powertools Python',
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 Python',
siteUrl: 'https://awslabs.github.io/aws-lambda-powertools-python'
},
plugins: [
{
resolve: 'gatsby-theme-apollo-docs',
options: {
root: __dirname,
menuTitle: 'Helpful resources',
githubRepo: 'awslabs/aws-lambda-powertools-python',
baseUrl: 'https://awslabs.github.io/aws-lambda-powertools-python',
algoliaApiKey: 'a8491b576861e819fd50d567134eb9ce',
algoliaIndexName: 'aws-lambda-powertools-python',
sidebarCategories: {
null: [
'index'
],
'Core utilities': [
'core/tracer',
'core/logger',
'core/metrics'
],
'Utilities': [
'utilities/middleware_factory',
],
},
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: {
'API Reference': {
href: 'https://awslabs.github.io/aws-lambda-powertools-python/api/'
},
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: /(excluded-link|external)/,
},
},
'gatsby-plugin-antd',
'gatsby-remark-autolink-headers',
'gatsby-plugin-offline',
'gatsby-plugin-sitemap'
]
};