UNPKG

sanity

Version:

Sanity is a real-time content infrastructure with a scalable, hosted backend featuring a Graph Oriented Query Language (GROQ), asset pipelines and fast edge caches

20 lines (16 loc) 440 B
import {definePlugin} from '../config' import {CreateIntegrationWrapper} from './components/CreateIntegrationWrapper' import {createUsEnglishLocaleBundle} from './i18n' export const createIntegration = definePlugin(() => { return { name: 'sanity/create-integration', studio: { components: { layout: CreateIntegrationWrapper, }, }, i18n: { bundles: [createUsEnglishLocaleBundle], }, } })