Rowin
Rowin
Explore posts from servers
CDCloudflare Developers
Created by Rohan Vashisht on 11/20/2024 in #workers-help
Your worker exceeded 1mb
Excluding the JSON file doesn't really make sense considering you're importing it
8 replies
CDCloudflare Developers
Created by Rohan Vashisht on 11/20/2024 in #workers-help
Your worker exceeded 1mb
It would, the entire worker is loaded into memory
8 replies
CDCloudflare Developers
Created by Rohan Vashisht on 11/20/2024 in #workers-help
Your worker exceeded 1mb
Yes it does
8 replies
CDCloudflare Developers
Created by Rohan Vashisht on 11/20/2024 in #workers-help
Your worker exceeded 1mb
The limit on the free plan has been increased from 1 MB to 3 MB by the way.
8 replies
CDCloudflare Developers
Created by Rohan Vashisht on 11/20/2024 in #workers-help
Your worker exceeded 1mb
8 replies
NNuxt
Created by Rowin on 11/20/2024 in #❓・help
useAsyncData(..., { server: false }) in combination with .client.vue not working correctly
Just in case it's indeed a bug: https://github.com/nuxt/nuxt/issues/30032
22 replies
NNuxt
Created by Rowin on 11/20/2024 in #❓・help
useAsyncData(..., { server: false }) in combination with .client.vue not working correctly
I'm aware, but I want blocking navigations
22 replies
NNuxt
Created by Rowin on 11/20/2024 in #❓・help
useAsyncData(..., { server: false }) in combination with .client.vue not working correctly
Without await the navigation is instant and the data is rendered after a second (unless it's been fetched before, then it's doing stale-while-revalidate).
22 replies
NNuxt
Created by Rowin on 11/20/2024 in #❓・help
useAsyncData(..., { server: false }) in combination with .client.vue not working correctly
Works though!
22 replies
NNuxt
Created by Rowin on 11/20/2024 in #❓・help
useAsyncData(..., { server: false }) in combination with .client.vue not working correctly
defineRouteRules seems like a good solution here. Experimental though.
22 replies
NNuxt
Created by Rowin on 11/20/2024 in #❓・help
useAsyncData(..., { server: false }) in combination with .client.vue not working correctly
😔
22 replies
NNuxt
Created by Rowin on 11/20/2024 in #❓・help
useAsyncData(..., { server: false }) in combination with .client.vue not working correctly
@kapa.ai
22 replies
NNuxt
Created by Rowin on 11/20/2024 in #❓・help
useAsyncData(..., { server: false }) in combination with .client.vue not working correctly
@kapa.ai
22 replies
NNuxt
Created by Rowin on 11/20/2024 in #❓・help
useAsyncData(..., { server: false }) in combination with .client.vue not working correctly
Using
routeRules: {
"/a": { ssr: false },
"/b": { ssr: false },
},
routeRules: {
"/a": { ssr: false },
"/b": { ssr: false },
},
works... but I'd really prefer .client.vue instead of having to put a bunch of paths in my Nuxt config.
22 replies