asasinmode
asasinmode
Explore posts from servers
NNuxt
Created by asasinmode on 6/29/2024 in #❓・help
Nuxt hub wrangler `Failed to initialize wrangler bindings proxy`
If anybody ever runs into it I opened an issue in cloudflare's workers sdk repo, hopefully it'll be resolved https://github.com/cloudflare/workers-sdk/issues/6170
3 replies
NNuxt
Created by asasinmode on 6/29/2024 in #❓・help
Nuxt hub wrangler `Failed to initialize wrangler bindings proxy`
Here are the logs, nothing happens after [db] running migrations and I just kill the dev server
3 replies
NNuxt
Created by asasinmode on 6/24/2024 in #❓・help
Read and set a value to use inside of template during build time
Thanks, it works
3 replies
NNuxt
Created by asasinmode on 11/26/2022 in #❓・help
Nuxt prepare error cannot destructure property 'nuxt' of 'this'
Thanks, worked
4 replies
NNuxt
Created by asasinmode on 11/26/2022 in #❓・help
Nuxt prepare error cannot destructure property 'nuxt' of 'this'
logs
4 replies
NNuxt
Created by asasinmode on 11/17/2022 in #❓・help
How to apply initial data attributes to body?
I mean sure but I can set it to 'false' with document.body.dataset.isNavOpen = 'false' and css body[data-is-nav-open='false'] doesn't work when it's just not there
16 replies
NNuxt
Created by asasinmode on 11/17/2022 in #❓・help
How to apply initial data attributes to body?
Better than yes/no i guess. Thanks for help ❤️
16 replies
NNuxt
Created by asasinmode on 11/17/2022 in #❓・help
How to apply initial data attributes to body?
Damn looks like yes and no it is :/
16 replies
NNuxt
Created by asasinmode on 11/17/2022 in #❓・help
How to apply initial data attributes to body?
No description
16 replies
NNuxt
Created by asasinmode on 11/17/2022 in #❓・help
How to apply initial data attributes to body?
Leaves it empty
16 replies
NNuxt
Created by asasinmode on 11/17/2022 in #❓・help
How to apply initial data attributes to body?
'data-is-nav-open': 'test' this works fine too
16 replies
NNuxt
Created by asasinmode on 11/17/2022 in #❓・help
How to apply initial data attributes to body?
Looks like setting value to 'false' is the problem
16 replies
NNuxt
Created by asasinmode on 11/17/2022 in #❓・help
How to apply initial data attributes to body?
'data-test': 'test' works :////
16 replies
NNuxt
Created by asasinmode on 11/17/2022 in #❓・help
How to apply initial data attributes to body?
No description
16 replies
NNuxt
Created by asasinmode on 11/17/2022 in #❓・help
How to apply initial data attributes to body?
I put this in defineNuxtConfig and while class and favicon work fine, data doesn't. What Nuxt version do you have your snippet running on if I may ask?
app: {
head: {
link: [{ rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' }],
bodyAttrs: {
'class': 'font-sans',
'data-is-nav-open': 'false',
},
},
},
app: {
head: {
link: [{ rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' }],
bodyAttrs: {
'class': 'font-sans',
'data-is-nav-open': 'false',
},
},
},
16 replies