prmbr-image-mksaas/next.config.ts
2025-02-20 00:21:32 +08:00

11 lines
340 B
TypeScript

import type { NextConfig } from "next";
import { withContentCollections } from "@content-collections/next";
const nextConfig: NextConfig = {
/* config options here */
};
// https://www.content-collections.dev/docs/quickstart/next
// withContentCollections must be the outermost plugin
export default withContentCollections(nextConfig);