gatsby-config.js 972 B

1234567891011121314151617181920212223242526272829303132333435
  1. module.exports = {
  2. siteMetadata: {
  3. title: `Rojo`,
  4. description: `Enabling professional development tools for Roblox developers.`,
  5. author: `@rojo-rbx`,
  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/logo-square-512.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. }