mirror of
https://github.com/smyalygames/anthonyberg-website.git
synced 2025-05-17 21:54:10 +02:00
17 lines
367 B
TypeScript
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)
|