mirror of
https://github.com/Drop-OSS/drop
synced 2026-08-27 14:23:05 -04:00
5 lines
156 B
TypeScript
5 lines
156 B
TypeScript
export default defineNuxtPlugin((nuxtApp) => {
|
|
nuxtApp.hook("vue:error", (error, instance, info) => {
|
|
console.error(info, error, instance);
|
|
});
|
|
});
|