https://github.com/bohdanmoroziuk/markdown-blog
Markdown-powered blog and portfolio built with Nuxt 3, Nuxt Content, TailwindCSS and TypeScript
https://github.com/bohdanmoroziuk/markdown-blog
markdown-blog mdc nuxt-content nuxt3 tailwindcss typescript
Last synced: about 1 month ago
JSON representation
Markdown-powered blog and portfolio built with Nuxt 3, Nuxt Content, TailwindCSS and TypeScript
- Host: GitHub
- URL: https://github.com/bohdanmoroziuk/markdown-blog
- Owner: bohdanmoroziuk
- License: mit
- Created: 2024-06-04T07:11:19.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-22T12:27:45.000Z (almost 2 years ago)
- Last Synced: 2025-02-13T04:31:24.167Z (over 1 year ago)
- Topics: markdown-blog, mdc, nuxt-content, nuxt3, tailwindcss, typescript
- Language: Vue
- Homepage: https://markdown-blog-phi-two.vercel.app
- Size: 483 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Markdown Blog
> Markdown-powered blog and portfolio built with Nuxt 3, Nuxt Content, TailwindCSS and TypeScript.
[Live Preview](https://markdown-blog-phi-two.vercel.app)
## Setup
Make sure to install the dependencies:
```bash
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
```
## Development Server
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev
# pnpm
pnpm run dev
# yarn
yarn dev
# bun
bun run dev
```
## Production
Build the application for production:
```bash
# npm
npm run build
# pnpm
pnpm run build
# yarn
yarn build
# bun
bun run build
```
Locally preview production build:
```bash
# npm
npm run preview
# pnpm
pnpm run preview
# yarn
yarn preview
# bun
bun run preview
```
Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.