A modern blog platform built with Nuxt 3, featuring server-side rendering, markdown support, and a custom CMS.
- 🔥 Nuxt 3 + Composition API
- 🗂️ File-based routing
- 💅 Tailwind CSS integration
- 🔐 JWT Authentication
- 🌍 i18n Support
├── pages/ # Page components and routes ├── components/ # Reusable UI components ├── composables/ # Custom composables (useX) ├── plugins/ # Nuxt plugins ├── middleware/ # Navigation guards ├── nuxt.config.ts # Nuxt configuration
# 1. Clone the repo
git clone https://github.com/username/project-name.git
cd project-name
# 2. Install dependencies
npm install
# 3. Run the development server
npm run dev
## 🔐 Environment Variables
Create a `.env` file with the following:
API_BASE_URL=https://api.example.com
NUXT_PUBLIC_SITE_NAME=MyNuxtApp
## 📦 Useful Commands
- `npm run dev` – Run dev server
- `npm run build` – Build for production
- `npm run preview` – Preview built app