Skip to content
This repository has been archived by the owner on Jun 21, 2022. It is now read-only.

denoland/doc_website

Repository files navigation

deno_doc frontend

This website is built with Next.js and automatically deploys to Vercel.

Contributing

Install Vercel CLI and run vercel dev. Currently not supported on Windows, see (lucacasonato/now-deno#12)

For this to run succesfully you will need to change the functions object of the vercel.json file to:

{
  "functions": {
    "api/**/*.ts": {
      "runtime": "vercel-deno@0.8.0",
      "maxDuration": 10
    }
  },

To install dependencies via npm, you must run npm install with the --legacy-peer-deps flag.