Cake
Cake
Explore posts from servers
NNuxt
Created by Kyllian on 4/22/2025 in #❓・help
Hydration error I can not figure out
@Kyllian specificLocation needs to be a useState, not a ref https://nuxt.com/docs/getting-started/state-management
12 replies
NNuxt
Created by WizZard on 4/20/2025 in #❓・help
Nuxt Image not displaying images
nope
20 replies
NNuxt
Created by WizZard on 4/20/2025 in #❓・help
Nuxt Image not displaying images
@WizZard I've recently had this error using pnpm, it got fixed when I added this to the package.json
"pnpm": {
"supportedArchitectures": {
"os": [
"win32",
"darwin",
"current"
],
"cpu": [
"x64",
"arm64"
]
},
"overrides": {
"sharp": "0.33.4"
}
}
"pnpm": {
"supportedArchitectures": {
"os": [
"win32",
"darwin",
"current"
],
"cpu": [
"x64",
"arm64"
]
},
"overrides": {
"sharp": "0.33.4"
}
}
20 replies
NNuxt
Created by ThoorAdam on 4/14/2025 in #❓・help
useFetch type inference
but it leads to strange linting errors not letting me access the values of the recipe
can u share the errors?
7 replies
NNuxt
Created by JuanMCe on 4/10/2025 in #❓・help
middleware on nested routes
/pages/admin.vue rendering <NuxtPage />
15 replies
NNuxt
Created by JuanMCe on 4/10/2025 in #❓・help
middleware on nested routes
then both /pages/admin/index.vue and /pages/admin/[id].vue should inherit it
15 replies
NNuxt
Created by JuanMCe on 4/10/2025 in #❓・help
middleware on nested routes
you need to add the middleware in /pages/admin.vue
15 replies
NNuxt
Created by ægteemil on 11/22/2024 in #❓・help
Testing with i18n and vitest
thank you, that worked
10 replies
NNuxt
Created by ægteemil on 11/22/2024 in #❓・help
Testing with i18n and vitest
@ægteemildid u ever manage to solve this? I'm currently having the same exact issue
10 replies
NNuxt
Created by Adnan Erlansyah on 1/14/2025 in #❓・help
How to make a middleware Check Permission to access some page
and what you mean hooks
38 replies
NNuxt
Created by Adnan Erlansyah on 1/14/2025 in #❓・help
How to make a middleware Check Permission to access some page
depends on what you're trying to do
38 replies
NNuxt
Created by Adnan Erlansyah on 1/14/2025 in #❓・help
How to make a middleware Check Permission to access some page
38 replies
NNuxt
Created by Adnan Erlansyah on 1/14/2025 in #❓・help
How to make a middleware Check Permission to access some page
those will run once
38 replies
NNuxt
Created by Adnan Erlansyah on 1/14/2025 in #❓・help
How to make a middleware Check Permission to access some page
look up nuxt plugins
38 replies
NNuxt
Created by Adnan Erlansyah on 1/14/2025 in #❓・help
How to make a middleware Check Permission to access some page
not a nuxt middelware
38 replies
NNuxt
Created by Adnan Erlansyah on 1/14/2025 in #❓・help
How to make a middleware Check Permission to access some page
a nuxt plugin
38 replies
NNuxt
Created by Adnan Erlansyah on 1/14/2025 in #❓・help
How to make a middleware Check Permission to access some page
a plugin
38 replies
NNuxt
Created by Jox on 11/5/2024 in #❓・help
Template ref "refName" used on a non-ref value. It will not work in the production build.
will cause that error
10 replies
NNuxt
Created by Jox on 11/5/2024 in #❓・help
Template ref "refName" used on a non-ref value. It will not work in the production build.
so
const shippingForm = ref({...})
const formRef = useTemplateRef('shippingForm')

<form ref="shippingForm" />
const shippingForm = ref({...})
const formRef = useTemplateRef('shippingForm')

<form ref="shippingForm" />
10 replies
NNuxt
Created by Jox on 11/5/2024 in #❓・help
Template ref "refName" used on a non-ref value. It will not work in the production build.
looks like u have another variable called shippingForm
10 replies