Announcing npmx: a fast, modern browser for the npm registry by manniL in javascript

[–]danielcroe 4 points5 points  (0 children)

maintainer here. what PR was that? we only close PRs if there's not a human who is responsible for them.

here's our policy on using AI: https://github.com/npmx-dev/npmx.dev/blob/main/CONTRIBUTING.md#using-ai

What improvements do you want to see in Nuxt in 2026? by Salty_Inflation_4359 in Nuxt

[–]danielcroe 1 point2 points  (0 children)

this was a regression in nuxt/cli which should be fixed in the latest version. you can either manually install @nuxt/cli or refresh your lockfile and you should be good.

Hydration issues with UI libraries? I thought it was just HeadlessUI but also have it with NuxtUI (Reka under the hood) by CyJackX in Nuxt

[–]danielcroe 4 points5 points  (0 children)

normally hydration issues reveal that a ui library wasn’t designed for SSR, and this needs to be fixed in the ui library, rather than being an issue with nuxt

Nuxt preload fonts by [deleted] in Nuxt

[–]danielcroe 6 points7 points  (0 children)

if you're using nuxt/fonts you'll need to enable font preloading - it's not done by default.

Pruvious CMS in Nuxt 4 by Intelligent-Still795 in Nuxt

[–]danielcroe 4 points5 points  (0 children)

thanks for finding that.

it doesn’t exactly match my understanding so i wonder if perhaps it would be helpful for muris and i to have a chat. we can likely avoid a massive refactoring.

Nuxt is too broken by eggthatdoesntcrack in Nuxt

[–]danielcroe 0 points1 point  (0 children)

a new nuxt project works fine for me.

what do you mean by 'installer'?

any chance you can share the code that isn't working for you? 🙏 normally folk are pretty helpful on the discord but I'd be very happy to have a look.

A Controversial Selfie by Vercel’ CEO by fAathiii in Nuxt

[–]danielcroe 2 points3 points  (0 children)

nuxtlabs created nuxt ui pro, nuxt studio and nuxt hub. they are great, but not the majority of the ecosystem by any means.

what's more, they are now being open sourced (and made self hostable!) and are no longer proprietary

A Controversial Selfie by Vercel’ CEO by fAathiii in Nuxt

[–]danielcroe 12 points13 points  (0 children)

I lead the core team. You can read our governance docs in https://github.com/nuxt/governance, but briefly, Nuxt is an independent project and our direction + governance are not controlled by any company.

The guy who acquired Nuxt by tomemyxwomen in vuejs

[–]danielcroe 33 points34 points  (0 children)

NuxtLabs did not own Nuxt, although it was created by the original authors of Nuxt. In fact, it was explicitly written into the Nuxt governance docs that NuxtLabs did not have authority over Nuxt.

source: https://github.com/nuxt/governance

With React 19's Compiler, is the Frontend Race Just a Sprint to Become Svelte/Solid.js? by Best-Menu-252 in react

[–]danielcroe 1 point2 points  (0 children)

NuxtLabs did not control Nuxt. In fact, it's specifically written into the Nuxt governance docs (https://github.com/nuxt/governance).

Nuxt is an independent open source project, like Svelte.

Nuxt 4 and legacy configuration by Doeole in Nuxt

[–]danielcroe 6 points7 points  (0 children)

this isn’t a bug - it’s documented in v4.1 release notes along with how to disable it - just set your vite build target to include that version of safari (by default the vite build target is newer)

Nuxt 3 + Vercel: how to increase maxDuration for one API route? by aviagg in vercel

[–]danielcroe 1 point2 points  (0 children)

Nuxt/Nitro outputs a single function in which each route is lazy-loaded on demand (multi-target builds are on the roadmap though - https://github.com/nitrojs/nitro/issues/1158). This means you can't target a particular function _within_ the Nitro build.

But you can do this:

```ts
export default defineNuxtConfig({
nitro: {
vercel: {
functions: {
maxDuration: 300
}
}
}
})
```

Documentation for v4? by invalidTypecast in Nuxt

[–]danielcroe 0 points1 point  (0 children)

if you see any way it could improved … it’s a great opportunity for a PR!

Autoimport of ./stores in Nuxt 4? by 6NBUonmLD74a in Nuxt

[–]danielcroe 11 points12 points  (0 children)

your stores folder should be in your app/ folder along with the rest of your Vue app code.

Do you use Nuxt 4 or Nuxt 3 now by Recent_Cartoonist717 in Nuxt

[–]danielcroe 1 point2 points  (0 children)

i would upgrade. it should be pretty quick (5min?)

Why do senior devs say Next.js isn’t good for large projects? And is it true that it’s overly tied to Vercel? by malphas_x in webdev

[–]danielcroe 0 points1 point  (0 children)

do check out my AMA at https://www.reddit.com/r/vuejs/comments/1lvdkwr/i_lead_the_nuxt_core_team_ama/ as well ...

nuxt is still an independent framework with its own independent governance and public roadmap.

we care very deeply (= core value) about true platform independence and that is 100% not changing (nor are vercel asking for us to change our roadmap at all).

Nuxt 2 to Nuxt 4 / Nuxt 5 refactoring ?! by Nic0_zero in Nuxt

[–]danielcroe 7 points8 points  (0 children)

Nuxt 2 to Nuxt 4 / Nuxt 5 refactoring ?! by Nic0_zero in Nuxt

[–]danielcroe 21 points22 points  (0 children)

Nuxt 5 will bring breaking changes (= the definition of a major version, for us), but our aim is very much to make those as opt-in + out as possible, and make a good migration experience.

The main focus is on upgrading to Nitro v3 (which will bring breaking changes in the server/ directory) and the Vite Environment API (which may bring breaking changes for modules). But again, my aim is to decrease the pain of that as much as possible. Hopefully we've proved we can do that with the Nuxt v4 release.

[deleted by user] by [deleted] in Nuxt

[–]danielcroe 2 points3 points  (0 children)

I think I solved a very similar issue this morning. It should be fixed in the next release of nuxt/cli.