@mintlify/previewing 4.0.1266 → 4.0.1267
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -36,6 +36,7 @@ const dev = async (argv) => {
|
|
|
36
36
|
const groups = argv.groups;
|
|
37
37
|
const cliVersion = argv.cliVersion;
|
|
38
38
|
const disableOpenApi = argv.disableOpenapi;
|
|
39
|
+
const disablePrefetch = argv.disablePrefetch;
|
|
39
40
|
await timeDev('ensure .mintlify directory', () => fse.ensureDir(DOT_MINTLIFY));
|
|
40
41
|
const versionString = await timeDev('read local client version', async () => {
|
|
41
42
|
return (await pathExists(VERSION_PATH)) ? fse.readFileSync(VERSION_PATH, 'utf8') : null;
|
|
@@ -88,6 +89,7 @@ const dev = async (argv) => {
|
|
|
88
89
|
localSchema,
|
|
89
90
|
groups,
|
|
90
91
|
disableOpenApi,
|
|
92
|
+
disablePrefetch,
|
|
91
93
|
allowSourceRefs: true,
|
|
92
94
|
lazyPages: true,
|
|
93
95
|
}));
|