Files
pihka-al/app/plugins/redirect-error.server.ts
2026-03-25 20:54:58 +01:00

7 lines
184 B
TypeScript

export default defineNuxtPlugin(() => {
const event = useRequestEvent()
if (event?.context.redirectNotFound) {
showError({ statusCode: 404, message: 'Link not found' })
}
})