Kilisei
Kilisei
Explore posts from servers
NNuxt
Created by Kilisei on 1/22/2025 in #❓・help
Nuxt nested layout
Hi everyone, We're having a problem with Nuxt and nested layouts. If there are more than one nested layout, the layout stacks. For example two headers and two sidebars, that we don't want to see please refer to the linked stackblitz. https://stackblitz.com/~/github.com/kilisei/nuxt-layout?file=package.json Please reply if you know how to fix this. Thank you for your help :)
10 replies
NNuxt
Created by Kilisei on 11/26/2024 in #❓・help
NuxtConfig path option
I have my configs in ./configs/*.config.(ts,js,mjs). Can nuxt do that with a --config or --configPath option? I didn't find anything online. (Thank you for any reply's)
4 replies
CDCloudflare Developers
Created by Kilisei on 3/21/2024 in #workers-help
Turnstile setting secret via env
Hello i have question about this i have turnstile and want to set the secret via context.env and this code throws 1101 whats the right way of doing this?
export const onRequest = [
(context) => {
return turnstilePlugin({
secret: context.env.SECRET,
});
},
...otherplugins or function
]
export const onRequest = [
(context) => {
return turnstilePlugin({
secret: context.env.SECRET,
});
},
...otherplugins or function
]
1 replies