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