Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

gatsby-config.js 745 B

před 4 roky
1234567891011121314151617181920212223242526272829303132
  1. module.exports = {
  2. siteMetadata: {
  3. title: `LessPass`,
  4. description: `stateless password manager`,
  5. author: `Guillaume Vincent`,
  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: `#3398eb`,
  25. theme_color: `#3398eb`,
  26. display: `minimal-ui`,
  27. icon: `src/images/icon.png`,
  28. },
  29. },
  30. `gatsby-plugin-postcss`
  31. ],
  32. }