Closed andrevandal closed 4 years ago
The widget doesn't load.
index.js
import CMS from 'netlify-cms' import { youtubeControl, youtubePreview } from 'netlify-cms-widget-youtube' CMS.registerWidget('youtube', youtubeControl, youtubePreview)
I tried import youtube from 'netlify-cms-widget-youtube' too
import youtube from 'netlify-cms-widget-youtube'
config.yml
- label: "Galeria: Vídeos" name: "videos-gallery" file: "content/gallery/videos.yml" fields: - label: "Vídeo" name: "videos" widget: "list" fields: - { name: video, label: Vídeo, widget: youtube, extraInfo: true, APIkey: "" }
in the Fields object you need the quotes:
Fields
fields: - { name: "video", label: "Vídeo", widget: "youtube", extraInfo: true, APIkey: "" }
Actual Behavior
The widget doesn't load.
index.js
I tried
import youtube from 'netlify-cms-widget-youtube'
tooconfig.yml
Specifications