Gerbuuun
Gerbuuun
Explore posts from servers
CDCloudflare Developers
Created by Gerbuuun on 12/26/2024 in #workers-help
Use wildcard domain with worker (assets)
obviously 🤦‍♂️
5 replies
CDCloudflare Developers
Created by Gerbuuun on 12/26/2024 in #workers-help
Use wildcard domain with worker (assets)
Ok, I had to change the route to *.mydomain.com/*
5 replies
CDCloudflare Developers
Created by Gerbuuun on 12/26/2024 in #workers-help
Use wildcard domain with worker (assets)
the two worker domains work completely fine. the route loads the assets but any other request fails with 522
5 replies
CDCloudflare Developers
Created by Gerbuuun on 12/26/2024 in #workers-help
Use wildcard domain with worker (assets)
I have two worker domains: - mydomain.com - fallback.mydomain.com (trying out the saas custom domains) and one route: - *.mydomain.com
5 replies
NNuxt
Created by null on 9/29/2024 in #❓・help
Nuxt UI Pro Student offer
Did you read the FAQ?
12 replies
NNuxt
Created by null on 9/29/2024 in #❓・help
Nuxt UI Pro Student offer
https://ui.nuxt.com/pro/pricing you can read it in the FAQ on this page
12 replies
NNuxt
Created by Baljeet Singh on 9/20/2024 in #❓・help
runtimeConfig not working when website deployed to netlify
Then I don't know, sorry.
26 replies
NNuxt
Created by Baljeet Singh on 9/20/2024 in #❓・help
runtimeConfig not working when website deployed to netlify
Have you tried NUXT_YOUTUBE_API_KEY?
26 replies
NNuxt
Created by JJ on 9/18/2024 in #❓・help
Is there an equivalent to unstable_after() in h3?
Seems like it. I’ve never used h3 object syntax
8 replies
NNuxt
Created by JJ on 9/18/2024 in #❓・help
Is there an equivalent to unstable_after() in h3?
8 replies
NNuxt
Created by JJ on 9/18/2024 in #❓・help
Is there an equivalent to unstable_after() in h3?
event.waitUntil
8 replies
NNuxt
Created by Rakan Alahmadi on 8/26/2024 in #❓・help
navigateTo weird behavior
If this fixed your problem, could you mark this as solved? It would help other people who might have the same problem
5 replies
NNuxt
Created by Rakan Alahmadi on 8/26/2024 in #❓・help
navigateTo weird behavior
I'm assuming you're using it like so: navigateTo('notification/example'). This is a relative path. You need to add a / to the front: navigateTo('/notification/example')
5 replies
NNuxt
Created by Hendrik Jan on 7/30/2024 in #❓・help
Can you extend H3EventContext?
I place this in a types.d.ts at the root of my project
4 replies
NNuxt
Created by Hendrik Jan on 7/30/2024 in #❓・help
Can you extend H3EventContext?
You should do it like this:
declare module 'h3' {
interface H3EventContext {
// your types here
}
}
declare module 'h3' {
interface H3EventContext {
// your types here
}
}
No need to import any h3 types for this if you are using nuxt
4 replies