Oliver Olmaru·1 day agoMemory Leak in SSR & Nuxt.js — if everything else failsI discovered some weird anomalies in our production server running on Google App Engine. There were few, but quite constant errors where our Nuxt.js server would return error 500, the instance would be terminated and new instance spun up. Upon inspection there was a log message, which cleared it all. …Nuxtjs6 min readNuxtjs6 min read
William Burillon·1 day agoDeploy SPA with Nuxt, Github Actions and NginxThis article will cover the process deploying SPA (Single Page Application) with Nuxt3 on your own server using DevOps tools. In this blog post, we will cover the process deploying a pre-existing Nuxt3 SPA (Single Page Application) on a server using GitHub Actions, Docker, Nginx, and Traefik. By following these…Nuxtjs6 min readNuxtjs6 min read
Maya ShavininITNEXT·3 days agoMember-onlyUsing TailwindCSS with Nuxt efficientlyIn this post, we will see how to use TailwindCSS with the Nuxt application efficiently with the help of the official Nuxt module for TailwindCSS. …Nuxtjs8 min readNuxtjs8 min read
Thomas Schopinski·5 days agoIntegration of google one tap auth with firebase auth in Nuxt 3 applicationHi, recently I have been working on an application where I have used firebase authentication, additionally to allow users to log in with “one click” I decided to add Google One Tap Auth. …Nuxtjs4 min readNuxtjs4 min read
Naoyuki Hirasawa·Mar 24Create a portfolio with Nuxt3 + Tailwind CSS + Three.js and deploy it automatically using GitHub Actionswith 3D fractal visual Hi, I am FTD, an artist & creator working in the digital realm. I renewed my portfolio (also got a domain name). I am trying to create fractal shapes in three dimensions as the main visual. FOLLOW THE DARKSIDE FTD Portfoliofollowthedarkside.com I have introduced various technologies that I am using for…Nuxtjs11 min readNuxtjs11 min read
Vafa·Mar 22Create a visitor tracker Laravel API and implement in Nuxt.jsHere’s an example of what your Laravel controller might look like: <?php namespace App\Http\Controllers\Api; use Illuminate\Http\Request; use App\Http\Controllers\Controller; use App\Models\Visitor; class VisitorController extends Controller { public function track(Request $request) { $visitor = new Visitor(); $visitor->ip_address =…Nuxtjs2 min readNuxtjs2 min read
Nico Meyer·Mar 23I build a meta search for bbq meatsI was sick and tired of searching through all the online shops whenever I wanted to order some nice steaks online. So I build http://carni.io/ (it’s in German only at the moment). The basic tech stack is NuxtJS, Tailwind, AWS and Vercel and Upstash(for Redis). If you have more questions about it, let me know in the comments. As always: feedback is appreciated.Nuxtjs1 min readNuxtjs1 min read
Nil Lenon·Mar 20Member-onlyComparing Gatsbyjs with NuxtjsGatsbyJS and NuxtJS are both popular JavaScript frameworks that are designed to help developers build modern web applications. — Both frameworks have their own strengths and weaknesses, and choosing the right one for your specific needs can be a challenge. In this article, we will compare GatsbyJS and NuxtJS in detail, looking at their key features, performance, and use cases. Overview of GatsbyJSNuxtjs6 min readNuxtjs6 min read
Oliver Olmaru·Mar 18Implementing blazing fast A/B testing suite with Server-Side Rendering (Nuxt 2) and PostHogAs the product development team worked tirelessly to build new features, the pressure was on for the Product Managers to finally see some results. Determined to uncover the impact of their hard work, one member of management exclaimed, “Oh, we can A/B test this!”. Excitement filled the room as the Product…Nuxtjs10 min readNuxtjs10 min read
Rafael Magalhaes·Mar 18Generating Dynamic Routes for Static Site Generation with Nuxt 3Static Site Generation (SSG) is an increasingly popular approach for building websites that combines the benefits of server-side rendering with the simplicity of static site hosting. Nuxt 3 is a powerful framework for building static sites that includes support for generating dynamic routes, allowing you to create static pages for…Nuxtjs3 min readNuxtjs3 min read