Proposition de refonte du site web de la coopérative basée sur le générateur de site statique Gatsby.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

gatsby-config.js 577B

123456789101112131415161718192021222324252627282930
  1. module.exports = {
  2. siteMetadata: {
  3. siteUrl: `https://www.yourdomain.tld`,
  4. title: "CLI - Coopérative du numérique"
  5. },
  6. plugins: [
  7. "gatsby-plugin-sass",
  8. "gatsby-transformer-remark",
  9. {
  10. resolve: "gatsby-source-filesystem",
  11. options: {
  12. name: "pages",
  13. path: "./src/pages/"
  14. },
  15. __key: "pages"
  16. },
  17. {
  18. resolve: `gatsby-plugin-manifest`,
  19. options: {
  20. name: "CLI",
  21. short_name: "CLI",
  22. start_url: "/",
  23. background_color: "#f7f0eb",
  24. theme_color: "#a2466c",
  25. display: "standalone",
  26. icon: "src/images/favicon.png"
  27. }
  28. }
  29. ]
  30. };