Skip to content

Commit 18f1dad

Browse files
authored
perf: call module.enableCompileCache() (#18323)
1 parent 67783b2 commit 18f1dad

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

packages/vite/bin/vite.js

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/usr/bin/env node
22
import { performance } from 'node:perf_hooks'
3+
import module from 'node:module'
34

45
if (!import.meta.url.includes('node_modules')) {
56
try {
@@ -41,6 +42,9 @@ if (debugIndex > 0) {
4142
}
4243

4344
function start() {
45+
try {
46+
module.enableCompileCache?.()
47+
} catch {}
4448
return import('../dist/node/cli.js')
4549
}
4650

0 commit comments

Comments
 (0)