Advertisement
Guest User

Untitled

a guest
Aug 24th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. //Our Agility Modules
  2. import RichTextArea from './modules/RichTextArea'
  3. import PostsListing from './modules/PostsListing'
  4. import PostDetails from './modules/PostDetails'
  5. import Jumbotron from './modules/Jumbotron'
  6.  
  7. //Our Agility PageTemplates
  8. import OneColumnTemplate from './pageTemplates/OneColumnTemplate'
  9.  
  10. export default {
  11. guid: 'ade6cf3c', //Set your guid here
  12. fetchAPIKey: 'defaultlive.201ff*************************', //Set your fetch apikey here
  13. previewAPIKey: 'defaultpreview.adfe0***************************', //set your preview apikey
  14. languageCode: 'en-us',
  15. channelName: 'website',
  16. isPreview: false,
  17. caching: {
  18. maxAge: 0
  19. },
  20. moduleComponents: {
  21. RichTextArea,
  22. PostsListing,
  23. Jumbotron,
  24. PostDetails
  25. },
  26. pageTemplateComponents: {
  27. OneColumnTemplate
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement