-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
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
Nested imports are not supported #10
Comments
Nested imports are a non-standard feature of Meteor. For the specific use case of import { xxx } from 'yyy'
if (Meteor.isServer) {
console.log(xxx)
} Another solution is dynamic imports. if (Meteor.isServer) {
const { xxx } = await import('yyy')
console.log(xxx)
} |
I tired to use dynamic imports, they worked fine in development but failed on a build step. Vite treated them as a part of a client code, created chunks and there were problems with imports inside those chunks, e. g. this import could not be resolved: I replaced all dynamic imports with |
This code doesn't work:
It would be nice to have this feature. I got around this problem by replacing
import
withrequire()
in the existing project, but AFAIK it's not the same.The text was updated successfully, but these errors were encountered: