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 46f70e7 commit 2d6d3b0Copy full SHA for 2d6d3b0
packages/vite-plugin/src/stylesPlugin.ts
@@ -49,7 +49,7 @@ export function stylesPlugin (options: Options): PluginOption {
49
!blockingModules.has(v.id!)
50
))
51
52
- pendingModules = modules.map(([k, v]) => v.id!)
+ pendingModules = modules.map(([, v]) => v.id!)
53
54
return (await Promise.all(
55
modules.map(([k, v]) => server.transformRequest(k).then(() => v))
@@ -64,6 +64,7 @@ export function stylesPlugin (options: Options): PluginOption {
64
console.error('vuetify:styles fallback timeout hit', {
65
blockingModules: Array.from(blockingModules.values()),
66
pendingModules,
67
+ pendingRequests: server._pendingRequests.keys()
68
})
69
resolve(false)
70
}, options.stylesTimeout)
0 commit comments