Skip to content

Commit

Permalink
update dependencies and Infos
Browse files Browse the repository at this point in the history
  • Loading branch information
loechel committed May 30, 2024
1 parent bf84236 commit 7430834
Show file tree
Hide file tree
Showing 3 changed files with 691 additions and 615 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ image.
The data folder contains the following files:

- `nav.json`
- `presentations.json`
- `history.json`
- `roadmap.json`
- `presentations.json`
- `team.json`

You will most likely only need to edit the last three files.
Expand Down
79 changes: 46 additions & 33 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,38 +2,51 @@
* @type {import('gatsby').GatsbyConfig}
*/
module.exports = {
// Note: Must be updated/removed when site is deployed on different path
pathPrefix: "/",
siteMetadata: {
title: "eduTAP",
description: "eduTAP is your educational ID and a collection of service passes in the digital wallet.",
siteUrl: "https://edutap.eu"
// Note: Must be updated/removed when site is deployed on different path
pathPrefix: "/",
siteMetadata: {
title: "eduTAP",
description:
"eduTAP is your educational ID and a collection of service passes in the digital wallet.",
siteUrl: "https://edutap.eu",
},
plugins: [
"gatsby-plugin-postcss",
"gatsby-plugin-image",
"gatsby-plugin-sitemap",
{
resolve: "gatsby-plugin-manifest",
options: {
icon: "src/images/icon.png",
},
},
plugins: ["gatsby-plugin-postcss", "gatsby-plugin-image", "gatsby-plugin-sitemap", {
resolve: 'gatsby-plugin-manifest',
options: {
"icon": "src/images/icon.png"
}
}, "gatsby-plugin-mdx", "gatsby-plugin-sharp", "gatsby-transformer-sharp", {
resolve: 'gatsby-source-filesystem',
options: {
"name": "images",
"path": "./src/images/"
},
__key: "images"
}, {
resolve: 'gatsby-source-filesystem',
options: {
"name": "pages",
"path": "./src/pages/"
},
__key: "pages"
}, "gatsby-transformer-json", {
resolve: 'gatsby-source-filesystem',
options: {
"name": "content",
"path": "./src/data/"
},
__key: "content"
}]
"gatsby-plugin-mdx",
"gatsby-plugin-sharp",
"gatsby-transformer-sharp",
{
resolve: "gatsby-source-filesystem",
options: {
name: "images",
path: "./src/images/",
},
__key: "images",
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "pages",
path: "./src/pages/",
},
__key: "pages",
},
"gatsby-transformer-json",
{
resolve: "gatsby-source-filesystem",
options: {
name: "content",
path: "./src/data/",
},
__key: "content",
},
],
};
Loading

0 comments on commit 7430834

Please sign in to comment.