added TADS 1 and 2

This commit is contained in:
2025-04-04 20:28:38 +02:00
parent a02224cdc8
commit 3d894c54fc
45 changed files with 492 additions and 16 deletions

View File

@@ -12,6 +12,18 @@ const config = {
preprocess: false,
strict: true,
}),
prerender: {
handleHttpError: ({ path, referrer, message }) => {
// ignore deliberate link to shiny 404 page
if (path === '/swordsnstuff' || path === '/projects/tads/tads1' || path === '/projects/tads/tads2') {
return;
}
// otherwise fail the build
throw new Error(message);
},
handleMissingId: 'ignore',
},
},
};