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
The generated paths for non-TS Vue files do not escape glob-relevant characters. For example:
{ name: 'typescript-eslint/disable-type-checked', files: [ 'src/pages/[...404].vue', ], // ... }
In this case, 'src/pages/[...404].vue' should be escaped as 'src/pages/\\[...404\\].vue'.
'src/pages/[...404].vue'
'src/pages/\\[...404\\].vue'
The text was updated successfully, but these errors were encountered:
1fc321c
Thanks!!! What an oversight! I did know that the paths are actually globs, but forgot to test file-based routing.
Sorry, something went wrong.
No branches or pull requests
The generated paths for non-TS Vue files do not escape glob-relevant characters. For example:
In this case,
'src/pages/[...404].vue'
should be escaped as'src/pages/\\[...404\\].vue'
.The text was updated successfully, but these errors were encountered: