anthonyberg-website/next.config.ts
2025-04-18 14:13:13 +02:00

17 lines
367 B
TypeScript

import nextra from 'nextra'
import type { NextConfig } from 'next'
const withNextra = nextra({
// ... Other Nextra config options
search: false
})
const nextConfig: NextConfig = {
// any configs you need
turbopack: {
resolveExtensions: ['.mdx', '.tsx', '.ts', '.jsx', '.js', '.mjs', '.json'],
},
}
export default withNextra(nextConfig)