next.js / examples /blog /next.config.js
AbdulElahGwaith's picture
Upload folder using huggingface_hub
b91e262 verified
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);