This project is set up to run with Bun.
Look at the Nuxt documentation to learn more.
First, create a .env file in the root of the project with the following content:
SANITY_PROJECT_ID=ID
SANITY_DATASET=production
SANITY_TOKEN=
API_BASE_URL=http://localhost:3000
You will need to add your Sanity token for SANITY_TOKEN.
Then, install dependencies:
bun installStart the development server on http://localhost:3000:
bun run devBuild the application for production:
bun run buildLocally preview production build:
bun run previewCheck out the deployment documentation for more information.