Skip to content

Commit

Permalink
Table
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Sharov committed Jul 27, 2020
1 parent 2927a0b commit 6249e5a
Show file tree
Hide file tree
Showing 27 changed files with 11,281 additions and 46 deletions.
8 changes: 8 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
root = true

[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
tab_width = 2
10 changes: 10 additions & 0 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ module.exports = {
author: `@gatsbyjs`,
},
plugins: [
`gatsby-plugin-resolve-src`,
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-filesystem`,
Expand All @@ -13,6 +14,15 @@ module.exports = {
path: `${__dirname}/src/images`,
},
},
{
resolve: 'gatsby-plugin-react-svg',
options: {
rule: {
include: /images/
}
}
},
`gatsby-plugin-sass`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
Expand Down
6 changes: 6 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"compilerOptions": {
"baseUrl": "src"
},
"include": ["src"]
}
Loading

0 comments on commit 6249e5a

Please sign in to comment.