13 lines
329 B
TypeScript
13 lines
329 B
TypeScript
import type { NextConfig } from "next";
|
|
import { withPayload } from "@payloadcms/next/withPayload";
|
|
|
|
const nextConfig: NextConfig = {
|
|
// Force clean dist dir on every build — évite les routes orphelines dans le cache
|
|
cleanDistDir: true,
|
|
images: {
|
|
remotePatterns: [],
|
|
},
|
|
};
|
|
|
|
export default withPayload(nextConfig);
|