rsnext/examples/blog/next.config.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
328 B
JavaScript
Raw Normal View History

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);