We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Warning: To load an ES module, set "type": "module" in the package.json or use the .mjs extension.
Applying any of the above fixes the problem of my ESM SSR server crashing. I'm using a clean Vite build for SSR.
The text was updated successfully, but these errors were encountered:
Same problem here 🙃 Output file should be floating-vue.mjs instead of floating-vue.es.js
floating-vue.mjs
floating-vue.es.js
Sorry, something went wrong.
I'm importing respective src file for now import VTooltip from 'floating-vue/src/directives/v-tooltip';
import VTooltip from 'floating-vue/src/directives/v-tooltip';
I encountered the same problem and submitted a PR which will fix it: #935
exports
Successfully merging a pull request may close this issue.
Warning: To load an ES module, set "type": "module" in the package.json or use the .mjs extension.
Applying any of the above fixes the problem of my ESM SSR server crashing. I'm using a clean Vite build for SSR.
The text was updated successfully, but these errors were encountered: