With big fanfare, Daniel Roe, the inventor and person in charge of Nuxt, proudly released the newest version of my favourite JavaScript framework on March 7, 2025: Nuxt v3.16
. It promised better performance, better error handling, and a lot more. The full announcement blog post showed that all Nuxt contributors are proud of the new version. They also gave instructions on how to upgrade to v3.16
from previous versions—which immediately broke my Tailwind styling. However, thanks to the Nuxt community, I can now show you the easy fix to this problem.
Tag: nuxt
-
Nuxt v3.16 is out—and TailwindCSS doesn’t seem to like it and breaks styling after upgrade. Here’s how you can fix it
-
Nuxt v3 Error: “ERROR [unhandledRejection] Nuxt instance is unavailable!”
Another day, another Nuxt project. Nuxt has just released
v3.14.1592
, which I chose because I wanted to have a look at the unannounced Nuxtv4
, which uses TailwindCSSv4
and other packages with major changes.So I ran the usual single-line command line to install Nuxt from scratch and I’m ready to explore—or so I had thought.
(more…) -
Easy example: Create a Nuxt 3 API endpoint to store data into an SQLite database
If it hasn’t been obvious at this point, let me tell you: I am a huge fan of Nuxt 3. In my opinion, it’s the best JavaScript Meta-Framework that’s out there and in active development.
But this snippet is not a eulogy for Nuxt. I’m sharing a rather long code snippet with you, written in TypeScript, that creates a Nuxt RESTful API endpoint. You can use this URL to send data to it via a
(more…)POST
HTTP request. It’ll then save the data into a local SQLite database file.