Installation

Guide on how to install and set up the cookies docs project.


Installation

To get started with this project, follow the steps below.

Prerequisites

  • Node.js (v18 or higher)
  • pnpm (recommended) or npm/yarn

Steps

  1. Clone the repository:

    git clone https://github.com/your-repo/cookiesdocs.git
    cd cookiesdocs
  2. Install dependencies:

    pnpm install
  3. Run the development server:

    pnpm dev
  4. Open your browser: Navigate to http://localhost:3000 to see the result.

Troubleshooting

If you encounter issues with pnpm, try clearing the node_modules and re-installing:

rm -rf node_modules pnpm-lock.yaml && pnpm install