UNPKG

@botonic/plugin-contentful

Version:

Botonic Plugin Contentful is one of the **[available](https://github.com/hubtype/botonic/tree/master/packages)** plugins for Botonic. **[Contentful](http://www.contentful.com)** is a CMS (Content Management System) which manages contents of a great variet

13 lines (10 loc) 424 B
import Migration, { MigrationContext } from 'contentful-migration' import { createCommonFields } from '../factories' module.exports = function (migration: Migration, _: MigrationContext) { // TODO WIP const startUp = migration .createContentType('startUp') .name('Start Up') .description('Flow initial content. Image, text & buttons') createCommonFields(startUp, { shortText: false, keywords: false }) }