Files
arthurp/apps/web/next.config.ts
2026-04-02 19:59:08 +02:00

10 lines
182 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
turbopack: {
root: '../../', // chemin vers la racine du monorepo
},
};
export default nextConfig;