https://github.com/codybontecou/blog-nuxt-content
https://github.com/codybontecou/blog-nuxt-content
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/codybontecou/blog-nuxt-content
- Owner: CodyBontecou
- Created: 2024-10-27T19:54:54.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-02-10T08:02:22.000Z (3 months ago)
- Last Synced: 2025-02-10T08:29:50.151Z (3 months ago)
- Language: Vue
- Homepage: https://www.codybontecou.com
- Size: 297 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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.