fix: disable concurrency

This commit is contained in:
Torsten Dittmann
2024-02-06 11:58:04 +01:00
parent 9a8e4e42ca
commit 40aed3364b

View File

@@ -52,15 +52,7 @@ const config = {
$markdoc: './src/markdoc'
},
prerender: {
concurrency: 16,
handleHttpError: ({ path, message }) => {
if (path.startsWith('/threads/')) {
console.warn('Flaky thread build error.')
return;
}
throw new Error(message);
}
concurrency: 1
}
}
};