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' $markdoc: './src/markdoc'
}, },
prerender: { prerender: {
concurrency: 16, concurrency: 1
handleHttpError: ({ path, message }) => {
if (path.startsWith('/threads/')) {
console.warn('Flaky thread build error.')
return;
}
throw new Error(message);
}
} }
} }
}; };