Skip to content

Commit

Permalink
mac version
Browse files Browse the repository at this point in the history
  • Loading branch information
bgoonz committed May 7, 2022
1 parent 08eee15 commit eb988c2
Show file tree
Hide file tree
Showing 198 changed files with 36,616 additions and 373,946 deletions.
10 changes: 10 additions & 0 deletions eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"env": {
"node": true,
"es6": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2018
}
}
14 changes: 7 additions & 7 deletions gatsby-config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const siteMetadata = require('./site-metadata.json')
const siteMetadata = require(`./site-metadata.json`);
module.exports = {
pathPrefix: '/',
pathPrefix: `/`,
siteMetadata: siteMetadata,
plugins: [
`gatsby-plugin-react-helmet`,
Expand All @@ -16,7 +16,7 @@ module.exports = {
{
resolve: `gatsby-plugin-disqus`,
options: {
shortname: `webdevhub-1`,
shortname: `webdevhub-1`
}
},
{
Expand All @@ -31,14 +31,14 @@ module.exports = {
resolve: `@stackbit/gatsby-plugin-menus`,
options: {
sourceUrlPath: `fields.url`,
pageContextProperty: `menus`,
},
pageContextProperty: `menus`
}
},
{
resolve: `gatsby-plugin-disqus`,
options: {
shortname: `webdevhub-1`
}
},
}
]
};
};
Loading

0 comments on commit eb988c2

Please sign in to comment.