Skip to content

Commit bab6ae9

Browse files
committedApr 21, 2024·
fix(bundler-vite): disable server.fs.cachedChecks by default (close #1526)
1 parent becebb2 commit bab6ae9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎packages/bundler-vite/src/plugins/vuepressMainPlugin.ts

+2
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ import 'vuepress/client-app'
8282
host: app.options.host,
8383
port: app.options.port,
8484
open: app.options.open,
85+
// ref: https://github.com/vitejs/vite/issues/15784#issuecomment-1923683823
86+
fs: { cachedChecks: false },
8587
},
8688
build: {
8789
ssr: isServer,

0 commit comments

Comments
 (0)
Please sign in to comment.