quotes

My favourite quotes. (gatsbyjs)
git clone http://git.hanabi.in/repos/quotes.git
Log | Files | Refs | README | LICENSE

gatsby-config.js (1329B)


      1 const path = require('path');
      2 module.exports = {
      3   siteMetadata: {
      4     author: 'Agastya Chandrakant',
      5     description: 'Some of my favourite quotes',
      6     email: 'acagastya@outlook.com',
      7     github: 'acagastya',
      8     instagram: 'acagastya',
      9     repo: 'quotes',
     10     siteName: 'Quotes',
     11     siteUrl: 'https://acagastya.github.io/quotes/',
     12     title: 'Quotes',
     13     twitter: '@acagastya',
     14     username: 'acagastya',
     15   },
     16   plugins: [
     17     {
     18       resolve: 'gatsby-source-filesystem',
     19       options: {
     20         name: 'quotes',
     21         path: path.join(__dirname, 'quotes'),
     22       },
     23     },
     24     {
     25       resolve: 'gatsby-transformer-remark',
     26       options: {
     27         plugins: ['gatsby-remark-abbr'],
     28       },
     29     },
     30     'gatsby-plugin-react-helmet',
     31     {
     32       resolve: 'gatsby-source-filesystem',
     33       options: {
     34         name: 'images',
     35         path: path.join(__dirname, 'src', 'images'),
     36       },
     37     },
     38     'gatsby-transformer-sharp',
     39     'gatsby-plugin-sharp',
     40     {
     41       resolve: 'gatsby-plugin-manifest',
     42       options: {
     43         name: 'Quotes',
     44         short_name: `My favourite quotes`,
     45         start_url: '/',
     46         background_color: '#324996',
     47         theme_color: '#298BCC',
     48         display: 'minimal-ui',
     49         icon: 'src/images/gatsby-icon.png', // This path is relative to the root of the site.
     50       },
     51     },
     52   ],
     53 };