|
| 1 | +module.exports = { |
| 2 | + siteMetadata: { |
| 3 | + title: 'Gatsby Bulma Quickstart', |
| 4 | + author: 'Aman Mittal', |
| 5 | + imageUrl: 'https://i.imgur.com/Vz81GEl.png', |
| 6 | + description: 'A Project to bootstrap your next Gatsby + Bulma site.', |
| 7 | + keywords: `Web developer, Web, Developer, CSS, HTML, JS, Javascript, Gatsby, Bulma Developer, CSS3, HTML5, Seo, Starter`, |
| 8 | + twitter: 'https://twitter.com/amanhimself', |
| 9 | + github: `https://github.com/amandeepmittal`, |
| 10 | + medium: 'https://medium.com/@amanhimself', |
| 11 | + gatsby: 'https://www.gatsbyjs.org/', |
| 12 | + bulma: 'https://bulma.io/', |
| 13 | + siteUrl: `https://www.example.com` |
| 14 | + }, |
| 15 | + plugins: [ |
| 16 | + 'gatsby-plugin-react-helmet', |
| 17 | + { |
| 18 | + resolve: `gatsby-source-filesystem`, |
| 19 | + options: { |
| 20 | + name: `images`, |
| 21 | + path: `${__dirname}/src/images` |
| 22 | + } |
| 23 | + }, |
| 24 | + 'gatsby-transformer-sharp', |
| 25 | + 'gatsby-plugin-sharp', |
| 26 | + { |
| 27 | + resolve: `gatsby-plugin-manifest`, |
| 28 | + options: { |
| 29 | + name: 'Makefolio', |
| 30 | + short_name: 'Makefolio', |
| 31 | + start_url: '/', |
| 32 | + background_color: '#2980b9', |
| 33 | + theme_color: '#2980b9', |
| 34 | + display: 'standalone', |
| 35 | + icon: 'src/images/gatsby-icon.png', |
| 36 | + orientation: 'portrait' |
| 37 | + } |
| 38 | + }, |
| 39 | + `gatsby-plugin-sass`, |
| 40 | + { |
| 41 | + resolve: `gatsby-plugin-google-analytics`, |
| 42 | + options: { |
| 43 | + trackingId: 'UA-XXXXXXXX-X', |
| 44 | + // Setting this parameter is optional (requried for some countries such as Germany) |
| 45 | + anonymize: true |
| 46 | + } |
| 47 | + }, |
| 48 | + `gatsby-plugin-sitemap` |
| 49 | + // this (optional) plugin enables Progressive Web App + Offline functionality |
| 50 | + // To learn more, visit: https://gatsby.app/offline |
| 51 | + // 'gatsby-plugin-offline', |
| 52 | + ] |
| 53 | +}; |
0 commit comments