https://github.com/preprio/nuxt-quick-start
The Nuxt Quick Start package covers the basics of connecting Prepr CMS with Nuxt. With the provided steps, you can make a basic blog in less than 10 minutes.
https://github.com/preprio/nuxt-quick-start
nuxt nuxt3 nuxt3-starter
Last synced: about 2 months ago
JSON representation
The Nuxt Quick Start package covers the basics of connecting Prepr CMS with Nuxt. With the provided steps, you can make a basic blog in less than 10 minutes.
- Host: GitHub
- URL: https://github.com/preprio/nuxt-quick-start
- Owner: preprio
- Created: 2023-05-22T08:35:44.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-24T12:16:45.000Z (3 months ago)
- Last Synced: 2025-03-24T13:27:04.043Z (3 months ago)
- Topics: nuxt, nuxt3, nuxt3-starter
- Language: Vue
- Homepage: https://nuxt-quick-start-prepr.vercel.app
- Size: 361 KB
- Stars: 0
- Watchers: 2
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt Quick Start
The Nuxt quick start project launches a blog app with content from Prepr.Look at the [Nuxt Quick start guide](https://docs.prepr.io/connecting-front-end-apps/nuxt-quick-start-guide) to learn more, or check out the [Stackblitz demo](https://stackblitz.com/edit/nuxt-quick-start) for zero installation.
## Setup
Make sure to install the dependencies:
```bash
# yarn
yarn install# npm
npm install# pnpm
pnpm install --shamefully-hoist
```## Add the environment file
Copy the .env.example file in this directory to .env (which will be ignored by Git) by running the following command:
```bash
cp .env.example .env
```## Update the environment file
In the .env file replace `` with the Prepr access token from your environment with demo content.## Development Server
Start the development server on http://localhost:3000
```bash
npm run dev
```## Production
Build the application for production:
```bash
npm run build
```Locally preview production build:
```bash
npm run preview
```Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
## The end result
