Remove global error handler

This commit is contained in:
Maciej Pędzich 2023-05-30 17:54:06 +02:00
parent 6c0a095fe2
commit 6acf2ba52e

View File

@ -17,10 +17,4 @@ const app = createApp(App);
registerPlugins(app);
app.config.errorHandler = (error) => {
if (import.meta.env.DEV) {
console.error(error);
}
};
app.mount('#app');