|
| 1 | +/** |
| 2 | + * Configure your Gatsby site with this file. |
| 3 | + * |
| 4 | + * See: https://www.gatsbyjs.org/docs/gatsby-config/ |
| 5 | + */ |
| 6 | + |
| 7 | +module.exports = { |
| 8 | + /* Your site config here */ |
| 9 | + siteMetadata: { |
| 10 | + title: `MD Parser`, |
| 11 | + description: `MD Parser for Gatsby`, |
| 12 | + siteUrl: `https://github.com/`, |
| 13 | + home: { |
| 14 | + title: `Hi! I'm Parser`, |
| 15 | + description: `I have been specifically designed to become a digital home for designers and developers, help them build amazing professional looking websites with ease. You don't have to worry about nitty gritty of web hosting services to run a blog and yet take full advantage of CMS to manage content :)`, |
| 16 | + }, |
| 17 | + /* W3Layouts domain verification key for contact forms https://my.w3layouts.com/Forms/ */ |
| 18 | + w3l_dom_key: `5e609f7a2d23fCF_Domain_verify` |
| 19 | + }, |
| 20 | + plugins: [ |
| 21 | + { |
| 22 | + resolve: `gatsby-source-filesystem`, |
| 23 | + options: { |
| 24 | + name: `markdown-pages`, |
| 25 | + path: `${__dirname}/_data`, |
| 26 | + }, |
| 27 | + }, |
| 28 | + { |
| 29 | + resolve: `gatsby-transformer-remark`, |
| 30 | + options: { |
| 31 | + plugins: [{ |
| 32 | + resolve: `gatsby-remark-prismjs`, |
| 33 | + options: { |
| 34 | + classPrefix: "language-", |
| 35 | + inlineCodeMarker: null, |
| 36 | + aliases: {}, |
| 37 | + showLineNumbers: false, |
| 38 | + noInlineHighlight: false, |
| 39 | + }, |
| 40 | + }, |
| 41 | + { |
| 42 | + resolve: 'gatsby-remark-emojis', |
| 43 | + }], |
| 44 | + }, |
| 45 | + }, |
| 46 | + { |
| 47 | + resolve: `gatsby-plugin-google-analytics`, |
| 48 | + options: { |
| 49 | + // The property ID; the tracking code won't be generated without it |
| 50 | + trackingId: "UA-30027142-1", |
| 51 | + head: true, |
| 52 | + } |
| 53 | + }, |
| 54 | + `gatsby-plugin-sass`, |
| 55 | + `gatsby-plugin-react-helmet`, |
| 56 | + `gatsby-plugin-netlify-cms`, |
| 57 | + ], |
| 58 | +} |
0 commit comments