9 lines
190 B
JavaScript
9 lines
190 B
JavaScript
function errorHandler({ error, redirect }) {
|
|
if (error) {
|
|
return redirect("/index.html");
|
|
}
|
|
}
|
|
|
|
export { errorHandler as default };
|
|
//# sourceMappingURL=errorHandler-a798e3fb.mjs.map
|