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
export function flushPostFlushCbs(seen?: CountMap) { if (pendingPostFlushCbs.length) { const deduped = [...new Set(pendingPostFlushCbs)] pendingPostFlushCbs.length = 0 } }
The problem is in this place
const deduped = [...new Set(pendingPostFlushCbs)]
var deduped=[].concat(new Set(pendingPostFlushCbs))
The configuration file look like this:
{ plugins: [vue(), legacy({ targets: ['defaults', 'since 2016', 'not IE 11'] })], build: { target: 'es2015', minify: false } }
'since 2016'
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The problem is in this place
The configuration file look like this:
The text was updated successfully, but these errors were encountered: