mirror of
https://github.com/arthur-pbty/arthurp.git
synced 2026-06-03 15:07:18 +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;
|