Skip to content

Commit

Permalink
Initial design commit
Browse files Browse the repository at this point in the history
  • Loading branch information
okryuk committed Dec 11, 2020
1 parent bd5e4e6 commit a7f939b
Show file tree
Hide file tree
Showing 30 changed files with 1,739 additions and 10 deletions.
1 change: 1 addition & 0 deletions gatsby-browser.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import "./src/styles/global.css"
12 changes: 11 additions & 1 deletion gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,15 @@

module.exports = {
/* Your site config here */
plugins: [],
plugins: [
`gatsby-transformer-json`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `jsondata`,
path: `./src/data`,
},
},
`gatsby-plugin-react-helmet`,
],
}
Loading

0 comments on commit a7f939b

Please sign in to comment.