Get in Touch

Multiple ways to reach our support team

WhatsApp Support

Quick responses via WhatsApp

Chat Now
Facebook

Message us on Facebook

Message
Email Support

support@example.com

Send Email
GitHub Issues

Report bugs or request features

Open Issue
Response Time: We typically respond within 24-48 hours. For urgent issues, use WhatsApp for faster assistance.

Frequently Asked Questions

Nuxt is a framework built on top of Vue that provides:

  • Server-Side Rendering (SSR): Better SEO and initial load performance
  • File-based Routing: Automatic routing from file structure
  • Auto Imports: Components and composables automatically imported
  • Full-Stack: Built-in server routes and API
  • Module Ecosystem: 200+ modules for common features

Vue is the core library, Nuxt adds structure and conventions for building production apps.

Use Nuxt 3 (recommended):

  • Built on Vue 3 with Composition API
  • Better performance and bundle size
  • TypeScript support out of the box
  • Vite for faster development
  • Active development and future updates

Use Nuxt 2 only if:

  • You have an existing Nuxt 2 project
  • You need specific Nuxt 2-only modules
  • Your team isn't ready for Vue 3

Recommendation: Start all new projects with Nuxt 3.

Recommended authentication solutions for Nuxt:

  1. @sidebase/nuxt-auth: NextAuth.js for Nuxt (most popular)
  2. @nuxtjs/supabase: Supabase authentication module
  3. @nuxtjs/auth-next: Official Nuxt auth module (legacy)
  4. Custom JWT: Build your own with server routes
# Install @sidebase/nuxt-auth
npm install @sidebase/nuxt-auth

# Add to nuxt.config.ts
modules: ['@sidebase/nuxt-auth']

Recommended Platforms:

  • Vercel: Zero-config, excellent DX, free tier
  • Netlify: Great for static sites and SSR
  • Cloudflare Pages: Edge deployment, fast globally
  • Node.js Server: Any VPS or cloud provider

Build Commands:

# For SSR/Universal
npm run build
npm run preview

# For Static (SSG)
npm run generate

# Deploy to Vercel
npm install -g vercel
vercel

Feature useFetch $fetch
Type Composable Function
SSR Support ✅ Yes ❌ No (client-only)
Reactive ✅ Yes ❌ No
Auto Deduplication ✅ Yes ❌ No
Use Case Components/Pages Event handlers, utils

Rule of thumb: Use useFetch in components, use $fetch in server routes or event handlers.

Installing Tailwind CSS in Nuxt is super easy:

# Install Tailwind module
npx nuxi@latest module add tailwindcss

# That's it! Tailwind is ready to use

The module automatically:

  • Installs Tailwind CSS and dependencies
  • Creates tailwind.config.js
  • Sets up PostCSS configuration
  • Enables JIT mode by default

Start using Tailwind classes in your components immediately!

Helpful Resources

Submit a Support Ticket

Can't find what you're looking for? Submit a ticket and we'll get back to you.

Quick tip: For faster support, try WhatsApp or check our FAQ section first!