This template application uses Nuxt 3 and provides a starting point for using Nuxt on Deno Deploy.
Begin by installing the dependencies for the project:
npm install
Start the development server on http://localhost:3000
:
npm run dev
This repo contains a GitHub workflow configuration to automatically deploy your application when you push to the main branch.
Before deploying for the first time, edit .github/workflows/deploy.yml
and
include your project ID near the bottom of this file.
To preview the production version of the application, build the site with this command:
NITRO_PRESET=deno_deploy npm run build
Then, run the server:
cd .output
deno run -A --unstable server/index.ts
Check out the Nuxt 3 deployment docs for more information.
MIT