Store the encoded data URL of the file.

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

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

Configuration

The DataURLStore extension accepts an option object of type DataURLStoreOptions which defines the properties below.

workersURL

Where the extension can find the WebWorker to use. Optional and usually automatically set by FilePond.

workersURL?: URL