Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| module.exports = { | |
| siteMetadata: { | |
| siteUrl: 'https://jiahao.codes', | |
| title: 'Jia Hao', | |
| author: 'Jia Hao Goh', | |
| description: 'Jia Hao blogs about code', | |
| facebookAppId: '1373234856114390', | |
| twitterUser: 'jiahaog', | |
| social: { | |
| githubUrl: 'https://github.com/jiahaog', | |
| linkedInUrl: 'https://www.linkedin.com/in/jiahaog/', | |
| keybaseUrl: 'https://keybase.io/jiahaog', | |
| twitterUrl: 'https://twitter.com/jiahaog', | |
| }, | |
| }, | |
| plugins: [ | |
| 'gatsby-plugin-react-next', | |
| 'gatsby-plugin-styled-components', | |
| 'gatsby-plugin-react-helmet', | |
| 'gatsby-plugin-sitemap', | |
| { | |
| resolve: 'gatsby-plugin-nprogress', | |
| options: { | |
| showSpinner: false, | |
| }, | |
| }, | |
| { | |
| resolve: 'gatsby-plugin-typography', | |
| options: { | |
| pathToConfigModule: 'src/utils/typography.js', | |
| }, | |
| }, | |
| { | |
| resolve: 'gatsby-source-filesystem', | |
| options: { | |
| path: `${__dirname}/src/pages`, | |
| name: 'pages', | |
| }, | |
| }, | |
| { | |
| resolve: `gatsby-source-filesystem`, | |
| options: { | |
| name: `img`, | |
| path: `${__dirname}/src/img/`, | |
| }, | |
| }, | |
| { | |
| resolve: 'gatsby-transformer-remark', | |
| options: { | |
| plugins: [ | |
| 'gatsby-remark-autolink-headers', | |
| { | |
| resolve: 'gatsby-remark-images', | |
| options: { | |
| maxWidth: 740, | |
| linkImagesToOriginal: false, | |
| backgroundColor: 'transparent', | |
| }, | |
| }, | |
| { | |
| resolve: 'gatsby-remark-responsive-iframe', | |
| options: { | |
| wrapperStyle: 'margin-bottom: 1.0725rem', | |
| }, | |
| }, | |
| 'gatsby-remark-prismjs', | |
| 'gatsby-remark-copy-linked-files', | |
| 'gatsby-remark-smartypants', | |
| ], | |
| }, | |
| }, | |
| 'gatsby-plugin-catch-links', | |
| 'gatsby-transformer-sharp', | |
| 'gatsby-plugin-sharp', | |
| { | |
| resolve: 'gatsby-plugin-google-analytics', | |
| options: { | |
| trackingId: 'UA-66102276-1', | |
| }, | |
| }, | |
| 'gatsby-plugin-feed', | |
| { | |
| resolve: 'gatsby-plugin-manifest', | |
| options: { | |
| name: 'Jia Hao', | |
| short_name: 'Jia Hao', | |
| start_url: '/', | |
| background_color: '#ffffff', | |
| theme_color: '#5C6BC0', | |
| display: 'minimal-ui', | |
| icons: [ | |
| { | |
| src: '/favicons/android-chrome-192x192.png', | |
| sizes: '192x192', | |
| type: 'image/png', | |
| }, | |
| { | |
| src: '/favicons/android-chrome-512x512.png', | |
| sizes: '512x512', | |
| type: 'image/png', | |
| }, | |
| ], | |
| }, | |
| }, | |
| 'gatsby-plugin-offline', | |
| 'gatsby-plugin-netlify', | |
| ], | |
| }; |