Blog
Articles, posts, and more! Create your own blog in VitNode.
Work in Progress
We're working on the blog plugin, so stay tuned for updates! 🚀
Installation
Install package from NPM
pnpm i @vitnode/blog@canary
bun i @vitnode/blog@canary
npm i @vitnode/blog@canary
Connect plugin to config
import { blogPlugin } from '@vitnode/blog/config';
export const vitNodeConfig = buildConfig({
plugins: [blogPlugin()],
});
Connect plugin to API config
import { blogApiPlugin } from '@vitnode/blog/config.api';
export const vitNodeApiConfig = buildApiConfig({
plugins: [blogApiPlugin()],
});
Run dev server
pnpm dev
bun dev
npm run dev