This is a documentation site built on top of Nuxt Content (v3).
All docs are located in the ./content folder if you're just looking for the docs in plain text.
Ensure you're in the right directory.
cd docs/
Copy over the environment variable example file.
cp .env.example .env
We use NVM to manage our local Node version (Docker support coming soon after some JS libraries support it better). Ensure you have NVM installed and configured and use the following command to install the correct version of Node:
nvm use
Make sure to install the dependencies:
yarn install
Start the development server on http://localhost:3000
yarn dev
Build the application for production:
yarn build
Locally preview production build:
yarn preview
Check out the deployment documentation for more information.