added TADS 1 and 2
This commit is contained in:
@@ -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',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user