One-click backups for AT Protocol
1import nextra from "nextra"; 2 3// Set up Nextra with its configuration 4const withNextra = nextra({ 5 contentDirBasePath: "/docs", 6}); 7 8// Export the final Next.js config with Nextra included 9export default withNextra({ 10 output: "export", 11 images: { 12 unoptimized: true, // mandatory, otherwise won't export 13 }, 14});