feat(frontend): Get project running again after move to Mac Mini

This commit is contained in:
2025-05-31 10:14:36 +02:00
parent d553668893
commit 075847f0ee
10 changed files with 86 additions and 28 deletions

View File

@@ -0,0 +1,9 @@
export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.hook('vue:error', (error, instance, info) => {
console.error('Vue error:', error, 'Instance:', instance, 'Info:', info)
})
nuxtApp.hook('app:error', (error) => {
console.error('App error:', error)
})
})