directus-extension-seo
Version:
Directus SEO Extension enhance Directus with powerful SEO scoring and validator and AI SEO from ChatGPT
17 lines (15 loc) • 399 B
text/typescript
import { defineInterface } from '@directus/extensions-sdk';
import InterfaceComponent from './interface.vue';
export default defineInterface({
id: 'social-preview',
name: 'Social Preview',
icon: 'insert_photo',
description: 'Social preview!',
component: InterfaceComponent,
hideLabel: true,
// hideLoader: true,
types: ['uuid'],
localTypes: ['other'],
group: 'other',
options: null,
});