Look at the Nuxt 3 documentation to learn more.
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
Start the development server on http://localhost:3000
:
pnpm dev
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