Skip to content

Commit 61ca8ae

Browse files
Use original quality for images on the website (#3976)
* Update banana-cake-pop.tsx * Update hot-chocolate.tsx * Update blog-post-version-11.tsx * Update blog-post-chillicream-platform-11-1.tsx * Update blog-post-ef-meets-graphql.tsx * Update seo.tsx * Update blog-article.tsx * Update gatsby-config.js * Update index.tsx * Update blog-articles.tsx Co-authored-by: Michael Staib <michael@chillicream.com>
1 parent 95751b1 commit 61ca8ae

10 files changed

+1
-10
lines changed

website/gatsby-config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ module.exports = {
221221
path
222222
featuredImage {
223223
childImageSharp {
224-
gatsbyImageData(layout: CONSTRAINED, width: 800, pngOptions: { quality: 90 })
224+
gatsbyImageData(layout: CONSTRAINED, width: 800)
225225
}
226226
}
227227
}

website/src/components/blog-article/blog-article.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ export const BlogArticleGraphQLFragment = graphql`
6161
gatsbyImageData(
6262
layout: CONSTRAINED
6363
width: 800
64-
pngOptions: { quality: 90 }
6564
)
6665
}
6766
}

website/src/components/images/banana-cake-pop.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ export const BananaCakePop: FC = () => {
1414
gatsbyImageData(
1515
layout: CONSTRAINED
1616
width: 1200
17-
pngOptions: { quality: 90 }
1817
)
1918
}
2019
}

website/src/components/images/blog-post-chillicream-platform-11-1.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ export const BlogPostChilliCreamPlatform: FC = () => {
1717
gatsbyImageData(
1818
layout: CONSTRAINED
1919
width: 1200
20-
pngOptions: { quality: 90 }
2120
)
2221
}
2322
}

website/src/components/images/blog-post-ef-meets-graphql.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ export const BlogPostEFMeetsGraphQL: FC = () => {
1717
gatsbyImageData(
1818
layout: CONSTRAINED
1919
width: 1200
20-
pngOptions: { quality: 90 }
2120
)
2221
}
2322
}

website/src/components/images/blog-post-version-11.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ export const BlogPostVersion11: FC = () => {
1717
gatsbyImageData(
1818
layout: CONSTRAINED
1919
width: 1200
20-
pngOptions: { quality: 90 }
2120
)
2221
}
2322
}

website/src/components/images/hot-chocolate.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ export const HotChocolate: FC = () => {
1414
gatsbyImageData(
1515
layout: CONSTRAINED
1616
width: 1200
17-
pngOptions: { quality: 90 }
1817
)
1918
}
2019
}

website/src/components/misc/seo.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ export const SEO: FC<SEOProps> = ({
4545
gatsbyImageData(
4646
layout: FIXED
4747
width: 1200
48-
pngOptions: { quality: 90 }
4948
)
5049
}
5150
}

website/src/components/widgets/blog-articles.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ export const BlogArticlesGraphQLFragment = graphql`
7171
gatsbyImageData(
7272
layout: CONSTRAINED
7373
width: 800
74-
pngOptions: { quality: 90 }
7574
)
7675
}
7776
}

website/src/pages/index.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ const IndexPage: FC = () => {
7878
gatsbyImageData(
7979
layout: CONSTRAINED
8080
width: 800
81-
pngOptions: { quality: 90 }
8281
)
8382
}
8483
}

0 commit comments

Comments
 (0)