Important
This is an experimental demo showcasing Nuxt + TinaCMS. Features and implementation details may change at any time.
This repository demonstrates how to integrate TinaCMS with Nuxt for a seamless headless content editing experience.
- Nuxt 3 + TinaCMS – A powerful combination for modern, headless content management.
- Live Editing – Modify your content in real-time with TinaCMS.
- Markdown & MDX Support – Store content in a Git-based CMS with flexible formats.
- Media Management – Upload and manage images and assets directly from the CMS.
Figure: Posts with Visual Editing
Make sure to install all necessary dependencies:
# npm
nnpm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
Create a .env
file (or rename .env.example
) and set the required values:
# TinaCMS Configuration
PUBLIC_TINA_CLIENT_ID=***
TINA_TOKEN=***
Start your Nuxt project with TinaCMS:
# npm
npm run dev
# pnpm
pnpm dev
# yarn
yarn dev
# bun
bun run dev
Visit http://localhost:3000 to start editing content with TinaCMS.
Build the application for production:
# npm
npm run build
# pnpm
pnpm build
# yarn
yarn build
# bun
bun run build
Locally preview the production build:
# npm
npm run preview
# pnpm
pnpm preview
# yarn
yarn preview
# bun
bun run preview
Check out the Nuxt deployment documentation for hosting options.
Happy coding! 🎉