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
It's the new decade (almost) and config still relies on ancient CommonJS module syntax.
Is it possible to use the new(ish) ES6 modules in the config instead? In webpack you can use webpack --config-register esm.
webpack --config-register esm
Is a similar feature in vue-clie yet?
(Related: #4477)
Same as webpack? I don't know, just pipe config-register back to webpack?
config-register
The text was updated successfully, but these errors were encountered:
ES6 modules are still experimental in the most recent versions of Node.js.
Sorry, something went wrong.
Dang. I got confused by this page: https://nodejs.org/api/modules.html
Turns out I should be looking here: https://nodejs.org/api/esm.html
No branches or pull requests
What problem does this feature solve?
It's the new decade (almost) and config still relies on ancient CommonJS module syntax.
Is it possible to use the new(ish) ES6 modules in the config instead?
In webpack you can use
webpack --config-register esm
.Is a similar feature in vue-clie yet?
(Related: #4477)
What does the proposed API look like?
Same as webpack? I don't know, just pipe
config-register
back to webpack?The text was updated successfully, but these errors were encountered: