Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/preprio/nuxt-complete-starter
The Complete Nuxt Starter package offers a sample project that demonstrates how simple it is to create compelling web pages in Prepr, including personalization and A/B testing capabilities.
https://github.com/preprio/nuxt-complete-starter
nuxt nuxt3 nuxt3-starter prepr
Last synced: about 2 months ago
JSON representation
The Complete Nuxt Starter package offers a sample project that demonstrates how simple it is to create compelling web pages in Prepr, including personalization and A/B testing capabilities.
- Host: GitHub
- URL: https://github.com/preprio/nuxt-complete-starter
- Owner: preprio
- Created: 2023-03-22T15:06:59.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-11T09:38:33.000Z (9 months ago)
- Last Synced: 2024-04-18T00:43:56.104Z (9 months ago)
- Topics: nuxt, nuxt3, nuxt3-starter, prepr
- Language: Vue
- Homepage:
- Size: 2.48 MB
- Stars: 1
- Watchers: 2
- Forks: 3
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt 3 Starter
Look at the [Complete guide to Nuxt and Prepr personalization](https://docs.prepr.io/connecting-front-end-apps/nuxt-complete-guide) to learn more, or check out the [Stackblitz demo](https://stackblitz.com/edit/nuxt-starter-prepr-cms) 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
```
## Development ServerStart 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.