Skip to content

Latest commit

 

History

History
65 lines (45 loc) · 1.18 KB

README.md

File metadata and controls

65 lines (45 loc) · 1.18 KB

Nuxt3 Storyblok Minimal Starter

This is a Nuxt3 Starter Kit for Storyblok with Vite, Vue3, TypeScript, Pug, SCSS and TailwindCSS!

For more info:

Setup

Make sure to install the dependencies:

# yarn
yarn install

# npm
npm install

# pnpm
pnpm install --shamefully-hoist

Create .env file and set storyblok's API token:

touch .env
open .env
STORYBLOK_TOKEN=....

Setup Navigation menu https://www.storyblok.com/tp/create-dynamic-menus-in-storyblok-and-nuxt

Development Server

Start the development server on http://localhost:3000

npm run dev

Production

Build the application for production:

npm run build

Locally preview production build:

npm run preview

Checkout the deployment documentation for more information.