Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3aba747

Browse files
committedMay 18, 2019
Initial structure
1 parent 2b418cb commit 3aba747

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+1662
-811
lines changed
 

‎.editorconfig

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
charset = utf-8
7+
trim_trailing_whitespace = true
8+
insert_final_newline = true

‎gatsby-config.js

Lines changed: 24 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module.exports = {
22
siteMetadata: {
3-
title: `Gatsby Default Starter`,
4-
description: `Kick off your next, great Gatsby project with this default starter. This barebones starter ships with the main Gatsby configuration files you might need.`,
5-
author: `@gatsbyjs`,
3+
title: `Python Pizza`,
4+
description: `AAA`,
5+
author: `@pythonpizzaconf`,
66
},
77
plugins: [
88
`gatsby-plugin-react-helmet`,
@@ -18,17 +18,31 @@ module.exports = {
1818
{
1919
resolve: `gatsby-plugin-manifest`,
2020
options: {
21-
name: `gatsby-starter-default`,
22-
short_name: `starter`,
23-
start_url: `/`,
24-
background_color: `#663399`,
25-
theme_color: `#663399`,
21+
name: `python.pizza`,
22+
short_name: `python.pizza`,
23+
start_url: `/?homepage=1`,
24+
background_color: `#fff`,
25+
theme_color: `#ed4337`,
2626
display: `minimal-ui`,
27-
icon: `src/images/gatsby-icon.png`, // This path is relative to the root of the site.
27+
icon: `src/images/favicon.png`, // This path is relative to the root of the site.
2828
},
2929
},
30+
{
31+
resolve: 'gatsby-plugin-favicon',
32+
options: {
33+
logo: './src/images/favicon.png',
34+
},
35+
},
36+
`gatsby-transformer-yaml`,
37+
{
38+
resolve: `gatsby-source-filesystem`,
39+
options: {
40+
path: `./src/data/`,
41+
},
42+
},
43+
'gatsby-plugin-postcss',
3044
// this (optional) plugin enables Progressive Web App + Offline functionality
3145
// To learn more, visit: https://gatsby.dev/offline
3246
// `gatsby-plugin-offline`,
3347
],
34-
}
48+
};

0 commit comments

Comments
 (0)
Please sign in to comment.