next.config.js (12 lines of code) (raw):
const withNextra = require('nextra')({
theme: 'nextra-theme-docs',
themeConfig: './theme.config.tsx',
staticImage: true
});
module.exports = {
...withNextra(),
images: {
unoptimized: true
},
trailingSlash: true
//reactStrictMode: true
};