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
plugin-vue
plugin-vue-jsx
According to the existing code:
const filter = createFilter(include || /\.[jt]sx$/, exclude) ... if (filter(id) || filter(filepath)) {
We cannot exclude files by querying strings, for example /\?xxx$/
/\?xxx$/
Change the code to
const includeFilter = createFilter(include || /\.[jt]sx$/) const excludeFilter = createFilter('**',exclude) ... if((includeFilter(id) || includeFilter(filepath)) && excludeFilter(id) && excludeFilter(filepath)){
No response
The text was updated successfully, but these errors were encountered:
PR welcome
Sorry, something went wrong.
No branches or pull requests
Related plugins
plugin-vue
plugin-vue-jsx
Description
According to the existing code:
We cannot exclude files by querying strings, for example
/\?xxx$/
Suggested solution
Change the code to
Alternative
No response
Additional context
No response
Validations
The text was updated successfully, but these errors were encountered: