Skip to content

Commit dd15e5e

Browse files
committed
fix: correct logo link #41
Signed-off-by: heitorlessa <[email protected]>
1 parent 9222244 commit dd15e5e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Diff for: docs/gatsby-config.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1+
const docsWebsite = "https://awslabs.github.io/aws-lambda-powertools-python"
2+
13
module.exports = {
24
pathPrefix: '/aws-lambda-powertools-python',
35
siteMetadata: {
46
title: 'AWS Lambda Powertools Python',
57
description: 'A suite of utilities for AWS Lambda Functions that makes tracing with AWS X-Ray, structured logging and creating custom metrics asynchronously easier',
68
author: `Amazon Web Services`,
79
siteName: 'AWS Lambda Powertools Python',
8-
siteUrl: 'https://awslabs.github.io/aws-lambda-powertools-python'
10+
siteUrl: `${docsWebsite}`
911
},
1012
plugins: [
1113
{
@@ -14,9 +16,10 @@ module.exports = {
1416
root: __dirname,
1517
menuTitle: 'Helpful resources',
1618
githubRepo: 'awslabs/aws-lambda-powertools-python',
17-
baseUrl: 'https://awslabs.github.io/aws-lambda-powertools-python',
19+
baseUrl: `${docsWebsite}`,
1820
algoliaApiKey: 'a8491b576861e819fd50d567134eb9ce',
1921
algoliaIndexName: 'aws-lambda-powertools-python',
22+
logoLink: `${docsWebsite}`,
2023
sidebarCategories: {
2124
null: [
2225
'index'

0 commit comments

Comments
 (0)