Martial
Martial
Explore posts from servers
NNuxt
Created by Martial on 10/2/2024 in #❓・help
event.waitUntil() or event.context.waitUntil()
Here is the CF doc https://developers.cloudflare.com/workers/runtime-apis/context/ I tried both but none seem to work in local dev server. I couldn't find any answer about it searching on the discord. Do you have an idea ?
4 replies
NNuxt
Created by Martial on 5/29/2024 in #❓・help
Throwing and catching errors in CF workers
I have an server endpoint in which I throw an error:
throw createError({
statusMessage: "Invalid password",
statusCode: 400,
});
throw createError({
statusMessage: "Invalid password",
statusCode: 400,
});
Now I catch this error in my page with the below code. It works perfectly fine during development. But in production (cloudflare workers), error.statusMessage is undefined. Do you have an idea why ?
try {
await $fetch("/api/login/password/signin", {
method: "POST",
body: formData,
});
} catch (error) {
let message = "Unknown error";
const message = error instanceof FetchError ? error.statusMessage : "Unknown error";
toast.add({title: message});
}
try {
await $fetch("/api/login/password/signin", {
method: "POST",
body: formData,
});
} catch (error) {
let message = "Unknown error";
const message = error instanceof FetchError ? error.statusMessage : "Unknown error";
toast.add({title: message});
}
2 replies
NNuxt
Created by Martial on 5/14/2024 in #❓・help
How can I prevent VSCode from adding the import statement for auto-imported components?
No description
7 replies