Skip to content

Commit

Permalink
bug fix: build breaking on Netlify
Browse files Browse the repository at this point in the history
Used ```git config core.ignorecase false```

Ref: gatsbyjs/gatsby#8205
  • Loading branch information
shianpoon committed Oct 13, 2019
1 parent fb82bd4 commit cc978f8
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/components/footer.js
@@ -0,0 +1,14 @@
import React from "react"
import footerStyles from "./footer.module.scss"

const Footer = () => {
return (
<footer className={footerStyles.footer}>
© {new Date().getFullYear()}, Built with
{` `}
<a href="https://www.gatsbyjs.org">Gatsby</a>
</footer>
)
}

export default Footer

0 comments on commit cc978f8

Please sign in to comment.