This function appends the image view template to the default entry list template.

import { defineFilePond } from 'filepond';
import { locale } from 'filepond/locales/en-gb.js';
import { createFilePondEntryList, appendEntryVideoView } from 'filepond/templates';

// Add video view to default template
const template = createFilePondEntryList();
appendEntryVideoView(template, {
    // supply AppendEntryVideoViewOptions here
});

defineFilePond({
    locale,

    // Set our custom template to the EntrylistView
    EntryListView: {
        template,
    },
});