Skip to content

Latest commit

 

History

History
49 lines (30 loc) · 977 Bytes

README.md

File metadata and controls

49 lines (30 loc) · 977 Bytes

Nuxt 3 Minimal Starter

Look at the Nuxt 3 documentation to learn more.

Setup

Copy the .env.example file to .env and add the NUXT_CRYPTO_API_KEY

cp .env.example .env

Make sure to install the dependencies through pnpm. Use corepack to enable the right version of pnpm.

More information about corepack can be found in this article

Then run the following:

pnpm i

Development Server

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

pnpm dev

Production

You can see the production website deployed on netlify by clicking here.

If you want to see the production build locally, you can do so by following the steps below.

Build the application for production:

pnpm build

Locally preview production build:

pnpm preview