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