https://github.com/alvarosabu/sushi-wuut
Static recipe site example for Youtube Series on Nuxt + Storyblok
https://github.com/alvarosabu/sushi-wuut
nuxt nuxt3 recipes static storyblok
Last synced: 7 months ago
JSON representation
Static recipe site example for Youtube Series on Nuxt + Storyblok
- Host: GitHub
- URL: https://github.com/alvarosabu/sushi-wuut
- Owner: alvarosabu
- Created: 2022-05-26T07:46:47.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-04T15:01:27.000Z (almost 3 years ago)
- Last Synced: 2025-02-28T11:12:46.165Z (8 months ago)
- Topics: nuxt, nuxt3, recipes, static, storyblok
- Language: HTML
- Homepage:
- Size: 3.2 MB
- Stars: 7
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sushi Wuut 🍣
> Example project using [Nuxt v3](https://v3.nuxtjs.org/) and [Storyblok](https://www.storyblok.com/) to create an static recipe app
## 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.
