Skip to content

Commit

Permalink
adding manisfest
Browse files Browse the repository at this point in the history
  • Loading branch information
Cesar Faber authored and Cesar Faber committed Feb 7, 2024
1 parent caa0d62 commit e103f0d
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 16 deletions.
49 changes: 35 additions & 14 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,40 @@
module.exports = {
siteMetadata: {
title: `cesarolvr`,
siteUrl: `https://www.cesarolvr.com`
siteUrl: `https://www.cesarolvr.com`,
},
plugins: ["gatsby-plugin-sass", "gatsby-plugin-image", "gatsby-plugin-sitemap", {
resolve: 'gatsby-plugin-manifest',
options: {
"icon": "src/images/icon.png"
}
}, "gatsby-plugin-sharp", "gatsby-transformer-sharp", {
resolve: 'gatsby-source-filesystem',
options: {
"name": "images",
"path": "./src/images/"
plugins: [
"gatsby-plugin-sass",
"gatsby-plugin-image",
"gatsby-plugin-sitemap",
{
resolve: "gatsby-plugin-manifest",
options: {
icon: "src/images/icon.png",
},
},
__key: "images"
}]
};
"gatsby-plugin-sharp",
"gatsby-transformer-sharp",
{
resolve: "gatsby-source-filesystem",
options: {
name: "images",
path: "./src/images/",
},
__key: "images",
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: "cesarolvr.com",
short_name: "cesarolvr",
start_url: "/",
background_color: "#222222",
theme_color: "#222222",
display: "standalone",
icon: "src/images/icon.png",
crossOrigin: `use-credentials`,
},
},
],
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"countup.js": "^2.8.0",
"gatsby": "^5.13.1",
"gatsby-plugin-image": "^3.13.0",
"gatsby-plugin-manifest": "^5.13.0",
"gatsby-plugin-manifest": "^5.13.1",
"gatsby-plugin-postcss": "^6.13.0",
"gatsby-plugin-sass": "^6.13.0",
"gatsby-plugin-sharp": "^5.13.0",
Expand Down
Binary file modified src/images/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5368,7 +5368,7 @@ gatsby-plugin-image@^3.13.0:
objectFitPolyfill "^2.3.5"
prop-types "^15.8.1"

gatsby-plugin-manifest@^5.13.0:
gatsby-plugin-manifest@^5.13.1:
version "5.13.1"
resolved "https://registry.yarnpkg.com/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.13.1.tgz#4e7a87c38c5d47622016eec70ce1383f6e331f60"
integrity sha512-F8zGMYz2tRDAzQO7hLrYv+xCFyIoeySeGsEk9j1KTdWB4liVQvLtFSXzj7yljyOTinDmA7mDStCiQFStC0rHZQ==
Expand Down

0 comments on commit e103f0d

Please sign in to comment.