mirror of
https://github.com/complexcaresolutions/frontend.blogwoman.de.git
synced 2026-03-17 17:24:00 +00:00
- Add @c2s/payload-contracts as shared API client dependency - Create src/lib/cms.ts with tenant-configured PayloadClient instance - Replace manual fetch logic in api.ts with contracts client calls - Add transpilePackages config for TypeScript source imports - Local types preserved for component compatibility (bridge pattern) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
7 lines
154 B
TypeScript
7 lines
154 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
transpilePackages: ["@c2s/payload-contracts"],
|
|
};
|
|
|
|
export default nextConfig;
|