Skip to content

Instantly share code, notes, and snippets.

@alfrekjv
Created December 5, 2018 01:27
Show Gist options
  • Save alfrekjv/6412f2117a218e82bbe2a965dc284a51 to your computer and use it in GitHub Desktop.
Save alfrekjv/6412f2117a218e82bbe2a965dc284a51 to your computer and use it in GitHub Desktop.
module.exports = {
siteMetadata: {
name: `Landing Page`,
tagline: `Landing Page`
},
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
name: `src`,
path: `${__dirname}/src`
// ignore: [`**/\.*`], // ignore files starting with a dot
},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: `UA-11111111-2`,
},
},
{
resolve: 'gatsby-plugin-react-svg',
options: {
rule: {
include: `${__dirname}/src/assets/images`
}
}
},
`gatsby-plugin-sass`,
`gatsby-plugin-typescript`,
`gatsby-plugin-tslint`
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment