mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-09 20:12:10 +10:00
6 lines
156 B
TypeScript
6 lines
156 B
TypeScript
export default defineNuxtPlugin((nuxtApp) => {
|
|
nuxtApp.hook("vue:error", (error, instance, info) => {
|
|
console.error(info, error, instance);
|
|
});
|
|
});
|