Store the blob URL of a file.

import { defineFilePond } from 'filepond';
import { locale } from 'filepond/locales/en-gb.js';
import { ObjectURLStore } from 'filepond/extensions/object-url-store.js';

defineFilePond({
    locale,
    extensions: [
        // Add the ObjectURLStore extension
        ObjectURLStore
    ]
})