Spaces:
Running
Running
File size: 305 Bytes
9e61dbf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/usr/bin/env node
import module from "node:module";
// https://nodejs.org/api/module.html#module-compile-cache
if (module.enableCompileCache && !process.env.NODE_DISABLE_COMPILE_CACHE) {
try {
module.enableCompileCache();
} catch {
// Ignore errors
}
}
await import("./dist/entry.js");
|