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
check dist/app.hash.js and dist/app-legacy.hash.js, they are identical except the source map comment part.
In pure js project, the modern bundle using arrow function for render function while the legacy bundle using function declaration.
In ts project, both bundles using function declaration.
The text was updated successfully, but these errors were encountered:
Version
3.0.0-rc.1
Reproduction link
no need
Steps to reproduce
create vue project with the steps below
After finish, run
vue-cli-service build --modern
.What is expected?
bundles should be different
What is actually happening?
check
dist/app.hash.js
anddist/app-legacy.hash.js
, they are identical except the source map comment part.In pure js project, the modern bundle using arrow function for
render function
while the legacy bundle using function declaration.In ts project, both bundles using function declaration.
The text was updated successfully, but these errors were encountered: