Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 737 Bytes

README.md

File metadata and controls

41 lines (27 loc) · 737 Bytes

Nuxt 3 Minimal Starter

Look at the Nuxt 3 documentation to learn more.

Setup

Make sure to install the dependencies:

# pnpm
pnpm install

Make sure to have the backend running on http://localhost:3000 and copy .env-sample as .env adding the missing paramters.

Development Server

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

# pnpm
pnpm run dev --port 3001

Production

Build the application for production:

# pnpm
pnpm run build

Locally preview production build:

# pnpm
pnpm run preview

Check out the deployment documentation for more information.