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
2.7.8
stackblitz.com
After open the above reproduction, you will see the console shows the error: [vite] Internal server error: Cannot overwrite across a split point
rewriteDefault can transform
@Component export default class App extends Vue { a = `;export xxx default`; }
into
@Component class App extends Vue { a = `;export xxx default`; } const ${as} = App
so that vite can work correctly
same as vuejs/core#6318
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Version
2.7.8
Reproduction link
stackblitz.com
Steps to reproduce
After open the above reproduction, you will see the console shows the error: [vite] Internal server error: Cannot overwrite across a split point
What is expected?
rewriteDefault can transform
into
so that vite can work correctly
What is actually happening?
same as vuejs/core#6318
The text was updated successfully, but these errors were encountered: