gatsby-config.js 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. module.exports = {
  2. siteMetadata: {
  3. title: `Test`,
  4. description: `Kick off your next, great Gatsby project with this default starter. This barebones starter ships with the main Gatsby configuration files you might need.`,
  5. author: `@gatsbyjs`,
  6. },
  7. plugins: [
  8. `gatsby-plugin-react-helmet`,
  9. {
  10. resolve: `gatsby-source-filesystem`,
  11. options: {
  12. name: `images`,
  13. path: `${__dirname}/src/images`,
  14. },
  15. },
  16. `gatsby-transformer-sharp`,
  17. `gatsby-plugin-sharp`,
  18. {
  19. resolve: `gatsby-plugin-manifest`,
  20. options: {
  21. name: `gatsby-starter-default`,
  22. short_name: `starter`,
  23. start_url: `/`,
  24. background_color: `#663399`,
  25. theme_color: `#663399`,
  26. display: `minimal-ui`,
  27. icon: `src/images/gatsby-icon.png`, // This path is relative to the root of the site.
  28. },
  29. },
  30. // this (optional) plugin enables Progressive Web App + Offline functionality
  31. // To learn more, visit: https://gatsby.dev/offline
  32. // `gatsby-plugin-offline`,
  33. ],
  34. }