Cleaning build

Signed-off-by: Charles de Dreuille <charles.dedreuille@gmail.com>
This commit is contained in:
Charles de Dreuille
2025-11-04 14:23:33 +00:00
parent 2d01298ed1
commit d7d87d5760
10 changed files with 13 additions and 301 deletions
+6
View File
@@ -1,4 +1,6 @@
import createMDX from '@next/mdx';
import path from 'path';
import { fileURLToPath } from 'url';
const nextConfig = {
pageExtensions: ['js', 'jsx', 'md', 'mdx', 'ts', 'tsx'],
@@ -13,6 +15,10 @@ const nextConfig = {
// These are type-level conflicts that don't affect runtime behavior
ignoreBuildErrors: true,
},
outputFileTracingRoot: path.join(
path.dirname(fileURLToPath(import.meta.url)),
'..',
),
};
const withMDX = createMDX({});