Nuxt 3 Minimal Starter

Node >=16.20.2 , yarn

Setup

Make sure to install the dependencies:

yarn install

Development Server

Start the development server on http://localhost:3000:

yarn nuxt dev

Production

Build the application for production:

yarn nuxt build

Locally preview production build:

yarn nuxt preview

To generate a static version of your application.

yarn nuxt generate

DOCKER

Build the Docker Image

docker-compose build

Run the Docker Container

docker-compose up

Stop and Remove the Container

docker-compose down