gatsby-theme-medium-to-own-blog
Version:
Gatsby theme for Medium-to-own-blog
16 lines (13 loc) • 351 B
JavaScript
module.exports = themeOptions => {
const pathPrefix = themeOptions.pathPrefix || ``
const contentPath = themeOptions.contentPath || `content`
const imagesPath = themeOptions.imagesPath || `src/images`
const config = themeOptions.config || {}
return {
...themeOptions,
pathPrefix,
contentPath,
imagesPath,
config,
}
}