Files
pfadi-bussle/next.config.mjs
v0 41da915565 chore: update package.json and install dependencies
Remove pnpm lock and regenerate npm lockfile.

Co-authored-by: Thomas Ruoff <111471+tomru@users.noreply.github.com>
2026-02-06 07:48:53 +00:00

20 lines
372 B
JavaScript

import createMDX from '@next/mdx'
/** @type {import('next').NextConfig} */
const nextConfig = {
pageExtensions: ['js', 'jsx', 'mdx', 'ts', 'tsx'],
reactCompiler: true,
experimental: {
turbopackFileSystemCacheForDev: true,
},
}
const withMDX = createMDX({
options: {
remarkPlugins: [],
rehypePlugins: [],
},
})
export default withMDX(nextConfig)