Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
konstantinschuette committed Apr 8, 2021
1 parent 18a4bce commit 48d9b38
Show file tree
Hide file tree
Showing 11 changed files with 2,416 additions and 460 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ Looking for more guidance? Full documentation for Gatsby lives [on the website](
## 💫 Deploy
[Build, Deploy, and Host On The Only Cloud Built For Gatsby](https://www.gatsbyjs.com/cloud/)
[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/gatsbyjs/gatsby-starter-default)
Gatsby Cloud is an end-to-end cloud platform specifically built for the Gatsby framework that combines a modern developer experience with an optimized, global edge network.
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/import/project?template=https://github.com/gatsbyjs/gatsby-starter-default)
<!-- AUTO-GENERATED-CONTENT:END -->
1 change: 1 addition & 0 deletions gatsby-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
*/

// You can delete this file if you're not using it
import "./src/styles/global.css"
39 changes: 34 additions & 5 deletions gatsby-config.js
Original file line number Diff line number Diff line change
@@ -1,34 +1,63 @@
const path = require(`path`)

module.exports = {
siteMetadata: {
title: `Gatsby Default Starter`,
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.`,
author: `@gatsbyjs`,
},
plugins: [
`gatsby-plugin-react-helmet`,
`gatsby-plugin-image`,
`gatsby-plugin-preact`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
path: path.join(__dirname, `src`, `images`),
},
},
`gatsby-background-image`,
`gatsby-plugin-image`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `gatsby-starter-default`,
short_name: `starter`,
start_url: `/`,
background_color: `#663399`,
theme_color: `#663399`,
display: `minimal-ui`,
start_url: `/`,
icon: `src/images/gatsby-icon.png`, // This path is relative to the root of the site.
},
},
`gatsby-plugin-gatsby-cloud`,
`gatsby-plugin-postcss`,
{
resolve: "gatsby-plugin-brotli",
options: {
extensions: ["css", "html", "js", "svg"],
},
},
{
resolve: "gatsby-plugin-zopfli",
options: {
extensions: ["css", "html", "js", "svg"],
},
},
{
resolve: `gatsby-plugin-recaptcha`,
options: {
async: false,
defer: true,
},
},
{
resolve: "gatsby-plugin-anchor-links",
options: {
offset: -90,
duration: 600,
},
},
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
// `gatsby-plugin-offline`,
Expand Down
2 changes: 2 additions & 0 deletions gatsby-ssr.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@
*/

// You can delete this file if you're not using it

// Import React so that you can use JSX in HeadComponents
Loading

0 comments on commit 48d9b38

Please sign in to comment.