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 8edf64b commit b45be43Copy full SHA for b45be43
packages/vite/src/node/plugins/css.ts
@@ -396,7 +396,7 @@ export function cssPlugin(config: ResolvedConfig): Plugin {
396
url = injectQuery(url, `t=${mod.lastHMRTimestamp}`)
397
}
398
399
- return [url, resolved]
+ return [url, cleanUrl(resolved)]
400
401
if (config.command === 'build') {
402
const isExternal = config.build.rollupOptions.external
packages/vite/src/node/server/environments/fullBundleEnvironment.ts
@@ -122,8 +122,8 @@ export class FullBundleDevEnvironment extends DevEnvironment {
122
() => {
123
debug?.('INITIAL: run done')
124
},
125
- () => {
126
- debug?.('INITIAL: run error')
+ (e) => {
+ debug?.('INITIAL: run error', e)
127
128
)
129
this.waitForInitialBuildFinish().then(() => {
0 commit comments