Nuxt

N

Nuxt

Nuxt Community Chat Server

Join

How to get current locale on server side using i18n module?

How to get current locale on server side using i18n module?

lucide-vue-next hydration mismatch

I'm getting hydration mismatches on my lucide-vue-next icons. Anyone know why this would happen?
No description

Strange cookie behaviour

So, quick recap: When frontend receives cookies with the response on the /auth request, they are received, but for some reason with all of the other requests they are not attached. I've attached the cookie sending code on the server. BTW, it works on chrome, but not on firefox, and at least on my PC it wouldn't work on edge....
No description

Error 'Cannot read properties of undefined (reading external)' when running bun run dev with Nuxt 3.

Hey everyone! I'm facing an issue when trying to run my Nuxt project with bun run dev. I created the project using npm create nuxt@latest -- -t ui --packageManager=bun, but when I run the dev command, I get the error below. It seems related to Nitro, but I'm not sure how to fix it. Has anyone encountered this or have any ideas on what might be causing it? Here's my environment: - Operating System: Linux - Node Version: v20.12.2 - Nuxt Version: 3.16.2...

"Missing Required Prop" when I never defined any propss

```html <template> <UForm class="w-[50%] flex flex-col gap-2"> <UFormField label="Name" class="w-full" :error="null">...
No description

Fetch is typed but not the object i put it in

When getting the /api/test it is typed correctly. ```javascript const res: SerializeObject<{ findings: {...

defineCachedEventHandler strips out headers

Anyone know why this is?
export default defineEventHandler(async (event) => {

console.log('headers', event.node.req.headers)
export default defineEventHandler(async (event) => {

console.log('headers', event.node.req.headers)
this is good ^, i get the headers, (which i need for auth, to pass on) yet changing to defineCachedEventHandler just logs out {} ?...

How to make microservice on AWS with nuxt?

I have a nuxt project consisting both frontend and backend api. using mongodb as a database. currently deployed on vercel. my friend who experienced in AWS, just join team and I want to migrate to use AWS. He offered me that we should separate the code into frontend and backend distinguishly. So we're finding the solution that does not break our code much now because we're continously implementing new feature. - How to make microservice on AWS with nuxt? - Should I go without microservice? or any consideration before moving to microservice? (I don't see the urgency for now)...

UNavigationMenu custom variants UI3

Hello Kapa 🙂 Show me how to create custom variants for UNavigationMenu in Nuxt UI3 I mostly want to change links colors (hover, activated or not) and size...

UButton custom variants with UI3

Hello dear kapa I was creating custom variants in Nuxt UI2 to choose from when creating a button, I fail to see how to do it with Nuxt UI3 Ideally, I would like to create custom colors and custom variants and mix them at will...

Nuxt content v2 -> v3

Nuxt version ^3.16.2:
```js future: { compatibilityVersion: 4 },...

Auto Imports vs. components/AppHeader.vue (?)

Hello guys, I am blocked with setting a new app due to the auto imports issue. In fact everything seems odd with Nuxt since yesterday night. Have you seen such err already?...
No description

Nuxt UI Radio Group Variants not displaying as shown in docs.

This is my first time using Nuxt UI. I took the sandbox project and replaced the buttons with a URadioGroup. I've tried to use the card and table variants but the radio group looks the same as the list/default variant. Is there something else I need to do? https://codesandbox.io/p/devbox/beautiful-euclid-lnm3mm?file=%2Fapp%2Fpages%2Findex.vue%3A7%2C1...

Client-side navigation still returns useFetch cache even though the cache has been cleared

I have a Nuxt 3 application with some API endpoints being cached with the defineCachedEventHandler() method. If I remove one of the caches with storage.removeItem(key); and refresh the page the new data is returned fine. But if I navigate client-side to another page and then navigate back to the page with the cached data, the old cache is returned. How do I avoid this? I have tried the following solutions: 1. Setting cache option on useFetch to "no-store" and "no-cache...

Monorepo using Nuxt/UI and TS ( + Vite)

I've suddenly gotten this error while building and I have no idea why this file gets compiled without TS. The source file has this, but it gets removed somehow? I'm noticing I'm lacking the knowledge to fix this and I figure it can't be an issue of Nuxt/UI since I've seen no reports about this. https://github.com/nuxt/ui/blame/v2.21.1/src/runtime/components/data/Table.vue ...

[unimport] failed to find "LazyIcon" imported from "#components"

Hello ! I'm having an issue when running tests on my Nuxt module. I’ve registered the @nuxt/icon module, but when I run my tests (with vitest), I get the following error: ```bash Error: [unimport] failed to find "LazyIcon" imported from "#components" Plugin: nuxt:components:imports...

What is the difference between renderSuspended and mountSuspended ?

what's the difference between renderSuspended and mountSuspended I can't figure it out ?

Hide secret token in plugin install options

How do I properly hide a secret token used in plugin options?

Validation of Form File Inputs (ui3)

How can I use the validation for a input[type=file]? The state only returns the following:
No description

Question about how to use getCachedData properly (server-side)

Hey everyone, I recently saw "Nuxt 3.8 - Client-side caching with getCachedData ✨" by Alexander Lichter https://www.youtube.com/watch?v=aQPR0xn-MMk I have three questions about it, couldn't find in the docs....
Next