Home
Softono

Nuxt Boilerplate

Open source MIT Vue
177
Stars
27
Forks
1
Issues
6
Watchers
3 months
Last Commit

 About Nuxt Boilerplate

A ready to use Nuxt 4 boilerplate. (w/ HTTPS, Tailwind, i18n+RTL, Pinia, GDPR, Dark mode, TypeScript, Prettier, ESLint etc.)

Platforms

Web Self-hosted

Languages

Vue

Need Help Installing Nuxt Boilerplate?

We provide expert installation service for this software. Our team will install, configure, and secure Nuxt Boilerplate on your server. plans start at just $30.

Nuxt Boilerplate

View on GitHub

Nuxt Boilerplate

A ready to use Nuxt 4 boilerplate

Live Demo: https://nuxt-boilerplate-main.vercel.app/

StackBlitz: https://stackblitz.com/github/renegadevi/nuxt-boilerplate

screenshot lighthouse

Quick setup (TLDR;)

git clone https://github.com/renegadevi/nuxt-boilerplate.git
cd nuxt-boilerplate
pnpm install
pnpm run dev

Setup

Prerequisites:

Clone repo

git clone https://github.com/renegadevi/nuxt-boilerplate.git
cd nuxt-boilerplate

Install dependencies:

pnpm install

Optional: .env

VITE_BASE_URL="https://localhost:3000/"

Optional: Generate certificate for HTTPS for localhost

# mkdir certs
cd certs
mkcert localhost

Start local server

Start development server

# HTTP
pnpm run dev
# HTTPS
pnpm run dev-https

Start production build server (HTTP)

# HTTP
pnpm run build;pnpm run preview
# HTTPS
pnpm run build;pnpm run preview-https

Check out the deployment documentation for more information.