We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3f557d commit 8b11feaCopy full SHA for 8b11fea
packages/vite/src/node/fsUtils.ts
@@ -48,10 +48,12 @@ export function getFsUtils(config: ResolvedConfig): FsUtils {
48
if (
49
config.command !== 'serve' ||
50
config.server.fs.cachedChecks === false ||
51
- config.server.watch?.ignored
+ config.server.watch?.ignored ||
52
+ process.versions.pnp
53
) {
54
// cached fsUtils is only used in the dev server for now
55
// it is enabled by default only when there aren't custom watcher ignored patterns configured
56
+ // and if yarn pnp isn't used
57
fsUtils = commonFsUtils
58
} else if (
59
!config.resolve.preserveSymlinks &&
0 commit comments