summaryrefslogtreecommitdiff
path: root/gatsby-config.js
blob: ae2170b73002a50ad20b9d41c8a27a8f7ea24ce6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module.exports = {
  plugins: [
    'gatsby-plugin-react-helmet',
    'gatsby-plugin-emotion',
    {
      resolve: 'gatsby-plugin-manifest',
      options: {
        name: 'Nicholas Van Doorn',
        short_name: 'NVD',
        start_url: '/',
        background_color: '#663399',
        theme_color: '#663399',
        display: 'minimal-ui',
        icon: 'src/images/ie.png' // This path is relative to the root
        // of the site.
      }
    },
    'gatsby-plugin-offline'
  ]
}