Skip to content

Commit

Permalink
feat(Project): various updates to data ingestion and visualisation
Browse files Browse the repository at this point in the history
  • Loading branch information
JayWelsh committed Jul 6, 2020
1 parent eba1306 commit 2aecd2d
Show file tree
Hide file tree
Showing 11 changed files with 1,155 additions and 84 deletions.
22 changes: 22 additions & 0 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ module.exports = {
title: `coronamap`,
description: `Provincial Coronavirus Distribution Map of South Africa`,
author: `@JayWelsh`,
image: '/images/site-preview.png'
},
plugins: [
`gatsby-plugin-react-helmet`,
Expand Down Expand Up @@ -46,7 +47,28 @@ module.exports = {
resolve: 'gatsby-plugin-react-leaflet',
options: {
linkStyles: false // (default: true) Enable/disable loading stylesheets via CDN
},
},
{
resolve: "gatsby-plugin-react-svg",
options: {
rule: {
include: /images/ // See below to configure properly
}
}
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
// The property ID; the tracking code won't be generated without it
trackingId: "UA-161537585-1",
// Defines where to place the tracking script - `true` in the head and `false` in the body
head: false,
// Setting this parameter is optional
anonymize: true,
// Setting this parameter is also optional
respectDNT: true,
},
}
],
}
Loading

0 comments on commit 2aecd2d

Please sign in to comment.