An open API service indexing awesome lists of open source software.

https://github.com/codybontecou/blog-nuxt-content


https://github.com/codybontecou/blog-nuxt-content

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

---
date: 2024-11-01
topics:
- Content documentation
- Setup
- Development server
- Production
- Deployment documentation
created_at: 2024-10-19T11:23
last_modified: 2024-11-09T21:19
---

Look at the [Content documentation](https://content.nuxt.com/) to learn more.

## Setup

Make sure to install the dependencies:

```shell
# yarn
yarn install

# npm
npm install

# pnpm
pnpm install
```

## Development Server

Start the development server on http://localhost:3000

```shell
npm run dev
```

## Production

Build the application for production:

```shell
npm run build
```

Locally preview production build:

```shell
npm run preview
```

Checkout the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.