Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
SaraVieira committed Aug 29, 2020
1 parent 6ca5406 commit caa2d94
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 20 deletions.
29 changes: 14 additions & 15 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ module.exports = {
author: info.author,
description: info.subject,
siteUrl: info.siteUrl,
social: info.social
social: info.social,
},
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/book.md`,
name: `book`
}
name: `book`,
},
},
{
resolve: `gatsby-transformer-remark`,
Expand All @@ -24,28 +24,28 @@ module.exports = {
{
resolve: `gatsby-remark-images`,
options: {
maxWidth: 590
}
maxWidth: 590,
},
},
{
resolve: `gatsby-remark-responsive-iframe`,
options: {
wrapperStyle: `margin-bottom: 1.0725rem`
}
wrapperStyle: `margin-bottom: 1.0725rem`,
},
},
`gatsby-remark-prismjs`,
`gatsby-remark-copy-linked-files`,
`gatsby-remark-smartypants`
]
}
`gatsby-remark-smartypants`,
],
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-google-analytics`,
options: {
//trackingId: `ADD YOUR TRACKING ID HERE`,
}
},
},
{
resolve: `gatsby-plugin-manifest`,
Expand All @@ -54,11 +54,10 @@ module.exports = {
start_url: `/`,
background_color: info.PWA.backgroundColor,
theme_color: info.PWA.themeColor,
display: `minimal-ui`
}
display: `minimal-ui`,
},
},
`gatsby-plugin-offline`,
`gatsby-plugin-react-helmet`,
"gatsby-plugin-no-javascript"
]
],
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"devDependencies": {
"epub-gen": "0.1.0",
"pdf-lib": "1.3.1",
"prettier": "1.19.1",
"prettier": "^2.1.1",
"puppeteer": "2.1.1"
},
"homepage": "https://github.com/SaraVieira/gatsby-starter-book#readme",
Expand Down
2 changes: 2 additions & 0 deletions src/html.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ export default function HTML(props) {
<head>
<meta charSet="utf-8" />
<meta httpEquiv="x-ua-compatible" content="ie=edge" />
<meta name="robots" content="noindex"></meta>
<meta name="googlebot" content="noindex"></meta>
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
Expand Down
Binary file modified static/cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10190,10 +10190,10 @@ prepend-http@^2.0.0:
resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897"
integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=

prettier@1.19.1:
version "1.19.1"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb"
integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==
prettier@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.1.1.tgz#d9485dd5e499daa6cb547023b87a6cf51bee37d6"
integrity sha512-9bY+5ZWCfqj3ghYBLxApy2zf6m+NJo5GzmLTpr9FsApsfjriNnS2dahWReHMi7qNPhhHl9SYHJs2cHZLgexNIw==

pretty-bytes@^5.1.0, pretty-bytes@^5.3.0:
version "5.3.0"
Expand Down

0 comments on commit caa2d94

Please sign in to comment.