9 lines
172 B
TypeScript
9 lines
172 B
TypeScript
import type { NextConfig } from "next"
|
|
import nextra from "nextra"
|
|
|
|
const withNextra = nextra({})
|
|
|
|
const nextConfig: NextConfig = {}
|
|
|
|
export default withNextra(nextConfig)
|