mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 14:37:13 +01:00
Remove pnpm lock and regenerate npm lockfile. Co-authored-by: Thomas Ruoff <111471+tomru@users.noreply.github.com>
20 lines
372 B
JavaScript
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)
|