mirror of
https://github.com/smyalygames/anthonyberg-website.git
synced 2025-05-18 06:04:12 +02:00
15 lines
356 B
TypeScript
15 lines
356 B
TypeScript
import nextra from 'nextra'
|
|
import type { NextConfig } from 'next'
|
|
|
|
const withNextra = nextra({
|
|
theme: 'nextra-theme-blog',
|
|
themeConfig: './src/theme.config.tsx',
|
|
// optional: add `unstable_staticImage: true` to enable Nextra's auto image import
|
|
})
|
|
|
|
const nextConfig: NextConfig = {
|
|
// any configs you need
|
|
}
|
|
|
|
export default withNextra(nextConfig)
|