One-click backups for AT Protocol
at fe3ce4cd982cfa5d93bf7319f6f57e6d0e7416fd 14 lines 319 B view raw
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});