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, appendEntryImageView } from 'filepond/templates';
// Add image view to default template
const template = createFilePondEntryList();
appendEntryImageView(template, {
// supply AppendEntryImageViewOptions here
});
defineFilePond({
locale,
// Set our custom template to the EntrylistView
EntryListView: {
template,
},
});