// middleware/errorHandler.js
export default function ({ error, redirect }) {
    if (error) {
        return redirect('/index.html')
    }
}