https://github.com/baroshem/jamstack-storyblok-nuxt
Test repo for jamstack-nuxt-storyblok
https://github.com/baroshem/jamstack-storyblok-nuxt
Last synced: 2 months ago
JSON representation
Test repo for jamstack-nuxt-storyblok
- Host: GitHub
- URL: https://github.com/baroshem/jamstack-storyblok-nuxt
- Owner: Baroshem
- Created: 2022-10-16T12:05:41.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-16T21:54:59.000Z (over 2 years ago)
- Last Synced: 2025-02-14T09:58:33.032Z (4 months ago)
- Language: Vue
- Homepage: jamstack-storyblok-nuxt.vercel.app
- Size: 470 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt 3 Minimal Starter
Look at the [nuxt 3 documentation](https://v3.nuxtjs.org) to learn more.
## Setup
Make sure to install the dependencies:
```bash
# yarn
yarn install# npm
npm install# pnpm
pnpm install --shamefully-hoist
```## 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
```Checkout the [deployment documentation](https://v3.nuxtjs.org/guide/deploy/presets) for more information.