anthonyberg-website/next.config.js
2023-11-14 14:13:49 +00:00

13 lines
325 B
JavaScript

const withNextra = require('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
}
module.exports = withNextra(nextConfig)