Velite is a powerful configuration tool for building type-safe data layer for Next.js with Zod schema, allowing developers to manage their apps with streamlined settings. Here, we will explore how to set up Velite for a Next.js project and enhance the development process.
After creating a velite.config.ts file in the root directory of your project to define collections config.
Velite uses velite.config.js/ts as the config file. You can see it in the root directory of your project.
Now we can put our blog in to velite defineConfig function
---id: 'xxxxxxxx-xxxx-xxxx-...'title: 'This is the first post'date: '2024-11-18T00:00:00Z'lastUpdated: '2024-11-18T00:00:00Z'description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.'published: truehashTags: { category: 'Blog', tags: ['Lorem', 'Ipsum'] }---`##` Hello world`###` This is my first postLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
After creating your content in hello-world.mdx, check your folder structured, you would see a folder named .velite, inside it you can see 2 files named index.d.ts and blog.json, that means ours hello-world.mdx have been parsed successfuly.
Inside components/mdx.tsx you can dynamically renders MDX content in a Next.js application by customizing specific HTML elements such as headings (h2, h3, etc.) and links (a) using React components, providing enhanced styling and functionality.
import { notFound } from 'next/navigation'import { posts } from '@/.velite'import { MDXContent } from '@/components/mdx'interface PostPageProps { params: Promise<{ slug: string[] }>}async function getPostFromParams(params: PostPageProps['params']) { const resolvedParams = await params const slug = resolvedParams.slug.join('/') const post = posts.find((post) => post.slugAsParams === slug) return post}export default async function BlogDetailPageView({ params }: PostPageProps) { const post = await getPostFromParams(params) if (!post || !post.published) { notFound() } return ( <div className="relative flex justify-between gap-10"> <article> <MDXContent code={post.body} /> </article> </div> )}
The @tailwindcss/typography plugin is a powerful tool in TailwindCSS that provides a set of pre-designed styles for rich text content. It's perfect for styling elements like blog posts, documentation, or any page with long-form content.
When installed using:
bash
npm i @tailwindcss/typography
You integrate this plugin into your Tailwind configuration file (tailwind.config.js or tailwind.config.ts). This enables you to apply sophisticated typography styles with minimal effort.
In the tailwind.config.ts file, you add the plugin:
With Next.js and Velite.js, building a feature-rich, SEO-friendly blog is simple and efficient. This guide covered everything from setting up the project to deploying it live, ensuring you have a strong foundation for future enhancements.
As your blog scales, the flexibility of Velite allows you to add new features like multilingual support, custom layouts, or advanced analytics with ease.
Happy coding (づ ̄3 ̄)づ╭❤️~
Last updated: November 18, 2024
Keep up to dateDon't miss out 😉. Get an email whenever I post, no spam.