One-click backups for AT Protocol
at db234dbe9d7140af3d7da20a2e19e2d653fc99f6 14 lines 330 B view raw
1import nextra from "nextra"; 2 3// Set up Nextra with its configuration 4const withNextra = nextra({ 5 // ... Add Nextra-specific options here 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});