Skip to content

Commit

Permalink
Updated to 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mrkaluzny committed Mar 18, 2021
1 parent 58ff325 commit 379bf4a
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 13 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.5.1 - March 18, 2021

**FIX**

- Added gatsby-plugin-image to gatsby-config.js (issues with loading images)

## 0.5.0 - March 14, 2021

**BREAKING CHANGES**
Expand Down
14 changes: 7 additions & 7 deletions content/pages/home.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
template: index
type: page
title: Henlo
version: v0.5.0
version: v0.5.1
description: >-
Minimalistic starter for Gatsby v3, optimized for SEO & Performance.
Styled with Tailwind and SCSS
Minimalistic starter for Gatsby v3, optimized for SEO & Performance.
Styled with Tailwind and SCSS
links:
- link:
content: Documentation
Expand All @@ -20,6 +20,6 @@ links:
url: https://cleancommit.io

seo:
title: Gatsby Starter Optimized For SEO & Performance
description: Henlo - Minimalistic starter for Gatsby v3, optimized for SEO & Performance. Styled with Tailwind & SCSS. Created by Clean Commit.
title: Gatsby Starter Optimized For SEO & Performance
description: Henlo - Minimalistic starter for Gatsby v3, optimized for SEO & Performance. Styled with Tailwind & SCSS. Created by Clean Commit.
---
8 changes: 3 additions & 5 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ module.exports = {
'gatsby-plugin-sharp',
'gatsby-transformer-sharp',
'gatsby-plugin-preload-fonts',
'gatsby-plugin-image',
{
resolve: 'gatsby-plugin-brotli',
},
Expand Down Expand Up @@ -61,17 +62,14 @@ module.exports = {
{
resolve: `gatsby-plugin-sass`,
options: {
postCssPlugins: [
tailwind,
require('./tailwind.config.js'),
],
postCssPlugins: [tailwind, require('./tailwind.config.js')],
},
},
{
resolve: `gatsby-plugin-purgecss`,
options: {
printRejected: true,
develop: false,
develop: false,
tailwind: true,
purgeCSSOptions: {
safelist: {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gatsby-starter-henlo",
"description": "Minimalistic starter for Gatsby v3, optimized for SEO & Performance.",
"version": "0.5.0",
"version": "0.5.1",
"author": "Wojciech Kałużny",
"browserslist": [
"defaults"
Expand Down

0 comments on commit 379bf4a

Please sign in to comment.