diff --git a/plugins/router.ts b/plugins/router.ts index 51b105a..fe21aa2 100644 --- a/plugins/router.ts +++ b/plugins/router.ts @@ -2,13 +2,6 @@ export default defineNuxtPlugin({ name: 'router', enforce: 'pre', setup(nuxtApp) { - nuxtApp.hook('app:error', (error) => { - if (error.statusCode === 404 && process.client) { - const basePath = process.env.NODE_ENV === 'production' ? process.env.BASE_PATH : '/' - error.path = window.location.pathname.replace(basePath as string, '') - } - }) - nuxtApp.vueApp.config.errorHandler = (error, instance, info) => { console.error('Vue Error:', error) console.error('Component:', instance)