mirror of
https://github.com/arthur-pbty/arthurp.git
synced 2026-06-05 21:51:42 +02:00
10 lines
182 B
TypeScript
10 lines
182 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
turbopack: {
|
|
root: '../../', // chemin vers la racine du monorepo
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|