Guest User

gatsby-config

a guest
Jan 31st, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. module.exports = {
  2. siteMetadata: {
  3. title: 'Gatsby Default Starter',
  4. },
  5. plugins: ['gatsby-plugin-react-helmet',
  6. {
  7. resolve: "gatsby-source-wordpress",
  8. options: {
  9. /*
  10. * The base URL of the Wordpress site without the trailingslash and the protocol. This is required.
  11. * Example : 'gatsbyjsexamplewordpress.wordpress.com' or 'www.example-site.com'
  12. */
  13. baseUrl: "MY_SITE_URL.pantheonsite.io",
  14. protocol: "http",
  15. hostingWPCOM: false,
  16. useACF: false,
  17. verboseOutput: false,
  18. },
  19. },
  20. ],
  21. };
Advertisement
Add Comment
Please, Sign In to add comment