Skip to content

Commit 2a3e03a

Browse files
committed
Chore: Skip SVG processing in SharpImage plugin
Signed-off-by: Lee Calcote <lee.calcote@layer5.io>
1 parent c074c5c commit 2a3e03a

18 files changed

Lines changed: 54 additions & 54 deletions

File tree

src/collections/events/2025/hacktoberfest-2025/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ register: true
1313
---
1414

1515
import { Link } from "gatsby" ;
16-
import hacktoberfestBadge from "./layer5-hacktoberfest25-badge.png";
16+
import hacktoberfestBadge from "./layer5-hacktoberfest2025-badge.png";
1717
import hacktoberfestFirstPR from "./hacktoberfest-layer5-first-pr.webp";
1818
import hacktoberfestOpenArms from "./hacktoberfest-layer5-open-arms.webp";
1919
import hacktoberfestTheme from "./hacktoberfest-meshery-theme.webp";

src/collections/events/2025/hacktoberfest-2025/layer5-hacktoberfest25-badge.png renamed to src/collections/events/2025/hacktoberfest-2025/layer5-hacktoberfest2025-badge.png

File renamed without changes.

src/pages/blog/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@ export const query = graphql`query allBlogs {
1919
date(formatString: "MMM Do, YYYY")
2020
author
2121
thumbnail {
22+
extension
23+
publicURL
2224
childImageSharp {
2325
gatsbyImageData(layout: FULL_WIDTH)
2426
}
25-
extension
26-
publicURL
2727
}
2828
darkthumbnail {
29+
extension
30+
publicURL
2931
childImageSharp {
3032
gatsbyImageData(layout: FULL_WIDTH)
3133
}
32-
extension
33-
publicURL
3434
}
3535
}
3636
fields {

src/pages/projects/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ export const query = graphql`query allProjects {
1313
frontmatter {
1414
title
1515
thumbnail {
16+
extension
17+
publicURL
1618
childImageSharp {
1719
gatsbyImageData(layout: FULL_WIDTH)
1820
}
19-
extension
20-
publicURL
2121
}
2222
}
2323
fields {

src/sections/Company/Legal/privacy/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ const Privacy = () => {
278278
</p>
279279
</Col>
280280
</Row>
281-
<TocPagination />
281+
<TocPagination />
282282
</Container>
283283
</TermsWrapper>
284284
);

src/sections/Platform-Engineering/platform.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,18 @@ const Platform = () => {
3939
category
4040
tags
4141
thumbnail {
42+
extension
43+
publicURL
4244
childImageSharp {
4345
gatsbyImageData(layout: FULL_WIDTH)
4446
}
45-
extension
46-
publicURL
4747
}
4848
darkthumbnail {
49+
extension
50+
publicURL
4951
childImageSharp {
5052
gatsbyImageData(layout: FULL_WIDTH)
5153
}
52-
extension
53-
publicURL
5454
}
5555
}
5656
fields {

src/templates/blog-category-list.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@ export const query = graphql`query BlogsByCategory($category: String!) {
1919
date(formatString: "MMMM Do, YYYY")
2020
author
2121
thumbnail {
22+
extension
23+
publicURL
2224
childImageSharp {
2325
gatsbyImageData(layout: FULL_WIDTH)
2426
}
25-
extension
26-
publicURL
2727
}
2828
darkthumbnail {
29+
extension
30+
publicURL
2931
childImageSharp {
3032
gatsbyImageData(width: 500, layout: CONSTRAINED)
3133
}
32-
extension
33-
publicURL
3434
}
3535
}
3636
fields {

src/templates/blog-single.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@ export const query = graphql`query BlogsBySlug($slug: String!) {
2121
category
2222
tags
2323
thumbnail {
24+
extension
25+
publicURL
2426
childImageSharp {
2527
gatsbyImageData(width: 500, layout: CONSTRAINED)
2628
}
27-
extension
28-
publicURL
2929
}
3030
darkthumbnail {
31+
extension
32+
publicURL
3133
childImageSharp {
3234
gatsbyImageData(width: 500, layout: CONSTRAINED)
3335
}
34-
extension
35-
publicURL
3636
}
3737
}
3838
fields {

src/templates/blog-tag-list.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@ export const query = graphql`query BlogsByTags($tag: String!) {
1919
date(formatString: "MMMM Do, YYYY")
2020
author
2121
thumbnail {
22+
extension
23+
publicURL
2224
childImageSharp {
2325
gatsbyImageData(layout: FULL_WIDTH)
2426
}
25-
extension
26-
publicURL
2727
}
2828
darkthumbnail {
29+
extension
30+
publicURL
2931
childImageSharp {
3032
gatsbyImageData(width: 500, layout: CONSTRAINED)
3133
}
32-
extension
33-
publicURL
3434
}
3535
}
3636
fields {

src/templates/book-single.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ export const query = graphql`query BookBySlug($slug: String!) {
1717
title
1818
abstract
1919
thumbnail {
20+
extension
21+
publicURL
2022
childImageSharp {
2123
gatsbyImageData(width: 500, layout: CONSTRAINED)
2224
}
23-
extension
24-
publicURL
2525
}
2626
}
2727
}

0 commit comments

Comments
 (0)