Skip to content

Commit 379bf4a

Browse files
committed
Updated to 0.5.1
1 parent 58ff325 commit 379bf4a

File tree

4 files changed

+17
-13
lines changed

4 files changed

+17
-13
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 0.5.1 - March 18, 2021
4+
5+
**FIX**
6+
7+
- Added gatsby-plugin-image to gatsby-config.js (issues with loading images)
8+
39
## 0.5.0 - March 14, 2021
410

511
**BREAKING CHANGES**

content/pages/home.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
template: index
33
type: page
44
title: Henlo
5-
version: v0.5.0
5+
version: v0.5.1
66
description: >-
7-
Minimalistic starter for Gatsby v3, optimized for SEO & Performance.
8-
9-
10-
Styled with Tailwind and SCSS
7+
Minimalistic starter for Gatsby v3, optimized for SEO & Performance.
8+
9+
10+
Styled with Tailwind and SCSS
1111
links:
1212
- link:
1313
content: Documentation
@@ -20,6 +20,6 @@ links:
2020
url: https://cleancommit.io
2121

2222
seo:
23-
title: Gatsby Starter Optimized For SEO & Performance
24-
description: Henlo - Minimalistic starter for Gatsby v3, optimized for SEO & Performance. Styled with Tailwind & SCSS. Created by Clean Commit.
23+
title: Gatsby Starter Optimized For SEO & Performance
24+
description: Henlo - Minimalistic starter for Gatsby v3, optimized for SEO & Performance. Styled with Tailwind & SCSS. Created by Clean Commit.
2525
---

gatsby-config.js

+3-5
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ module.exports = {
1818
'gatsby-plugin-sharp',
1919
'gatsby-transformer-sharp',
2020
'gatsby-plugin-preload-fonts',
21+
'gatsby-plugin-image',
2122
{
2223
resolve: 'gatsby-plugin-brotli',
2324
},
@@ -61,17 +62,14 @@ module.exports = {
6162
{
6263
resolve: `gatsby-plugin-sass`,
6364
options: {
64-
postCssPlugins: [
65-
tailwind,
66-
require('./tailwind.config.js'),
67-
],
65+
postCssPlugins: [tailwind, require('./tailwind.config.js')],
6866
},
6967
},
7068
{
7169
resolve: `gatsby-plugin-purgecss`,
7270
options: {
7371
printRejected: true,
74-
develop: false,
72+
develop: false,
7573
tailwind: true,
7674
purgeCSSOptions: {
7775
safelist: {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "gatsby-starter-henlo",
33
"description": "Minimalistic starter for Gatsby v3, optimized for SEO & Performance.",
4-
"version": "0.5.0",
4+
"version": "0.5.1",
55
"author": "Wojciech Kałużny",
66
"browserslist": [
77
"defaults"

0 commit comments

Comments
 (0)