|
| 1 | +'use strict' |
| 2 | + |
| 3 | +module.exports = { |
| 4 | + siteMetadata: { |
| 5 | + title: 'gatsby-starter-typescript-plus', |
| 6 | + description: 'A starter kit for TypeScript-based Gatsby projects with sensible defaults.', |
| 7 | + keywords: 'gatsbyjs, gatsby, javascript, sample, something', |
| 8 | + siteUrl: 'https://gatsby-starter-typescript-plus.netlify.com', |
| 9 | + author: { |
| 10 | + name: 'Resi Respati', |
| 11 | + url: 'https://twitter.com/resir014', |
| 12 | + email: 'resir014@gmail.com' |
| 13 | + } |
| 14 | + }, |
| 15 | + plugins: [ |
| 16 | + { |
| 17 | + resolve: 'gatsby-source-filesystem', |
| 18 | + options: { |
| 19 | + name: 'content', |
| 20 | + path: `${__dirname}/src/content` |
| 21 | + } |
| 22 | + }, |
| 23 | + { |
| 24 | + resolve: 'gatsby-transformer-remark', |
| 25 | + options: { |
| 26 | + plugins: [ |
| 27 | + { |
| 28 | + resolve: 'gatsby-remark-responsive-iframe', |
| 29 | + options: { |
| 30 | + wrapperStyle: 'margin-bottom: 1rem' |
| 31 | + } |
| 32 | + }, |
| 33 | + 'gatsby-remark-prismjs', |
| 34 | + 'gatsby-remark-copy-linked-files', |
| 35 | + 'gatsby-remark-smartypants', |
| 36 | + { |
| 37 | + resolve: 'gatsby-remark-images', |
| 38 | + options: { |
| 39 | + maxWidth: 1140, |
| 40 | + quality: 90, |
| 41 | + linkImagesToOriginal: false |
| 42 | + } |
| 43 | + } |
| 44 | + ] |
| 45 | + } |
| 46 | + }, |
| 47 | + 'gatsby-transformer-json', |
| 48 | + { |
| 49 | + resolve: 'gatsby-plugin-canonical-urls', |
| 50 | + options: { |
| 51 | + siteUrl: 'https://gatsby-starter-typescript-plus.netlify.com' |
| 52 | + } |
| 53 | + }, |
| 54 | + 'gatsby-plugin-emotion', |
| 55 | + 'gatsby-plugin-typescript', |
| 56 | + 'gatsby-plugin-sharp', |
| 57 | + 'gatsby-transformer-sharp', |
| 58 | + 'gatsby-plugin-react-helmet' |
| 59 | + ] |
| 60 | +} |
0 commit comments