You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Have you updated Vue FilePond, FilePond, and all plugins?
I have updated FilePond and its plugins
Describe the bug
I am using nuxt 3 with the following import:
import VueFilePond, { setOptions } from 'vue-filepond'
When accessing the page client side everything works but when reloading the page with ssr i get the following error:
import { setOptions } from 'vue-filepond';
^^^^^^^^^^
SyntaxError: Named export 'setOptions' not found. The requested module 'vue-filepond' is a CommonJS module, which may not support all module.exports as named exports.
CommonJS modules can always be imported via the default export, for example using:
import pkg from 'vue-filepond';
const { setOptions } = pkg;
Reproduction
When running "yarn dev" the error does not occur.. but when running yarn build and yarn start in SSR i get the error
Is there an existing issue for this?
Have you updated Vue FilePond, FilePond, and all plugins?
Describe the bug
I am using nuxt 3 with the following import:
import VueFilePond, { setOptions } from 'vue-filepond'
When accessing the page client side everything works but when reloading the page with ssr i get the following error:
Reproduction
When running "yarn dev" the error does not occur.. but when running yarn build and yarn start in SSR i get the error
Environment
The text was updated successfully, but these errors were encountered: