We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65c5c54 commit 3326128Copy full SHA for 3326128
composables/editor.js
@@ -108,9 +108,10 @@ export const useEditor = () => {
108
navigateTo(`/${data.uid}`);
109
} catch (error) {
110
loading.value = false;
111
+ console.log(error.statusMessage)
112
toast.add({
113
title: "Error",
- description: error.message,
114
+ description: error.statusMessage || error.message,
115
color: "red",
116
icon: "i-heroicons-x-circle",
117
});
nuxt.config.ts
@@ -20,7 +20,7 @@ export default defineNuxtConfig({
20
routes: {
21
'/api/*': {
22
maxRequests: 5,
23
- intervalSeconds: 60,
+ intervalSeconds: 120,
24
},
25
26
0 commit comments