diff --git a/src/dev/dev_build_cache.ts b/src/dev/dev_build_cache.ts index a37b0ea0ba1..21c51104f3d 100644 --- a/src/dev/dev_build_cache.ts +++ b/src/dev/dev_build_cache.ts @@ -214,7 +214,12 @@ export class DiskBuildCache implements DevBuildCache { }); for await (const entry of entries) { - console.log("DISK - " + entry.path); + // OutDir might be inside static dir + + console.log( + "DISK - " + entry.path, + path.relative(this.config.build.outDir, entry.path), + ); const result = await this.#transformer.process( entry.path, "production",