UNPKG

jamify-source-ghost

Version:

Gatsby source plugin for fetching content from headless Ghost CMS.

10 lines (8 loc) 244 B
const GhostContentAPI = require(`@tryghost/content-api`) module.exports.configure = ({ apiUrl, contentApiKey, version = `v3` }) => ( new GhostContentAPI({ url: apiUrl, key: contentApiKey, version: version, }) )