Imagine this: You’ve got a story to tell or expertise to share—maybe about tech, travel, or tasty recipes. Creating a blog can be an exciting way to connect with your audience, showcase your knowledge, and build a personal or professional brand. With Nuxt 3, @nuxt/content, and Tailwind CSS, you’ll not only have a blog that looks polished but one that’s lightning-fast and easy to maintain.
This guide will take you step by step through setting up a modern blog that’s both functional and beautiful. By the end, you’ll have:
Let’s get started!
Before we dive into the blog-specific features, let’s set up a Nuxt 3 project. Open your terminal and run the following commands:
npx nuxi@latest init myblog -t content
cd myblog
pnpm install # or npm install / yarn install
pnpm run dev # or npm run dev / yarn dev
This command initializes a new Nuxt 3 project with the content template, which includes:
content/
folder).Your project will have a structure similar to this:
myblog
├── .data
│ └── content
│ └── contents.sqlite
├── app
│ ├── components
│ │ ├── Alert.vue
│ │ └── Counter.vue
│ ├── pages
│ │ └── [...slug].vue
│ └── public
│ └── favicon.ico
├── content
│ ├── about.md
│ └── index.md
├── server
│ └── tsconfig.json
├── content.config.ts
├── nuxt.config.ts
├── package.json
├── pnpm-lock.yaml
├── README.md
└── tsconfig.json
The .data/
folder contains an experimental SQLite database for @nuxt/content. If you prefer pure file-based blogging, you can safely ignore or remove this.
To align the project structure with standard Nuxt practices, let’s reorganize the files:
app/components
into a components/
folder.app/pages
into the pages/
directory.content/
for your Markdown posts.Your updated structure will look like this:
myblog
├── components
│ ├── Alert.vue
│ └── Counter.vue
├── content
│ ├── about.md
│ └── index.md
├── pages
│ └── [...slug].vue
├── public
│ └── favicon.ico
├── server
│ └── tsconfig.json
├── content.config.ts
├── nuxt.config.ts
├── package.json
├── pnpm-lock.yaml
├── README.md
└── tsconfig.json
Re-run your development server:
pnpm run dev
Everything should still work as before!
To create your blog posts, add a blog/
folder inside content/
and create Markdown files for your posts. For example:
content
├── about.md
├── index.md
└── blog
├── first-blog.md
├── second-blog.md
└── third-blog.md
Each .md
file can include frontmatter for metadata:
---
title: "My First Blog"
date: "2025-01-01"
tags: ["introduction"]
---
# Welcome to My Blog!
This is my very first post using Nuxt 3 and @nuxt/content.
To better manage your posts, let’s define collections in content.config.ts
:
import { defineCollection, defineContentConfig } from '@nuxt/content'
export default defineContentConfig({
collections: {
content: defineCollection({
type: 'page',
source: '**',
}),
blog: defineCollection({
type: 'page',
source: 'blog/*.md',
}),
},
})
This separates content/
into:
about.md
, index.md
).blog/*.md
).Next, we’ll create a blog listing page at pages/blogs.vue
:
<script setup lang="ts">
import { queryCollection } from '#content'
import { useAsyncData } from '#app'
const { data: posts } = await useAsyncData('blog', () => queryCollection('blog').all())
</script>
<template>
<div>
<h1 class="text-3xl font-bold">Blogs</h1>
<ul>
<li v-for="post in posts" :key="post._id">
<NuxtLink :to="post._path">{{ post.title }}</NuxtLink>
</li>
</ul>
</div>
</template>
Visit http://localhost:3000/blogs to see a list of your posts.
To style your blog, install and configure Tailwind CSS:
pnpm add --save-dev @nuxtjs/tailwindcss
Add it to your nuxt.config.ts
:
export default defineNuxtConfig({
modules: ['@nuxtjs/tailwindcss'],
})
Optionally, create tailwind.config.ts
:
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./components/**/*.{js,vue,ts}',
'./pages/**/*.vue',
'./content/**/*.{md,mdx}',
],
theme: {
extend: {},
},
}
With Tailwind, your blog will look clean and modern.
Congratulations! You’ve set up a modern blog with Nuxt 3, @nuxt/content, and Tailwind CSS. From here, you can:
Stay tuned for future guides on advanced topics like dynamic layouts and deployment strategies!
Bridging the gap between classroom theory and real-world development. Unlock your future with hands-on training, industry tools, and a community of passionate mentors.