We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e6f93b commit 38b0dc1Copy full SHA for 38b0dc1
packages/vite-plugin/src/stylesPlugin.ts
@@ -67,7 +67,7 @@ export function stylesPlugin (options: Options): Plugin {
67
load (id) {
68
// When Vite is configured with `optimizeDeps.exclude: ['vuetify']`, the
69
// received id contains a version hash (e.g. \0__void__?v=893fa859).
70
- if (new RegExp(`^${PLUGIN_VIRTUAL_PREFIX}__void__(\\?.*)?$/`).test(id)) {
+ if (new RegExp(`^${PLUGIN_VIRTUAL_PREFIX}__void__(\\?.*)?$`).test(id)) {
71
return ''
72
}
73
0 commit comments