oh, I think I figured out the error, it looks like prime256v1 keys are *NOT* supported, despite it b
oh, I think I figured out the error, it looks like prime256v1 keys are NOT supported, despite it being allowed to upload
wrangler.toml:waitUntil expects a Promisevoid is fine, but you don't have anything to await there so it'll just kill the fetch

--remote mode, then yes, it shouldexport default {
async scheduled(event, env, ctx) {
ctx.waitUntil(task());
},
};
function task() {
fetch(
'https://canary.discord.com/api/webhooks/:id/:token',
{
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
content: 'test',
}),
}
);
}name = ...
main = ...
compatibility_date = ...
[triggers]
crons = [ "* * * * *" ]