next.config.mjs 244 B

1234567891011121314151617
  1. import nextra from 'nextra';
  2. const withNextra = nextra({
  3. latex: true,
  4. search: {
  5. codeblocks: false,
  6. },
  7. });
  8. const nextOptions = {
  9. output: 'export',
  10. images: {
  11. unoptimized: true,
  12. },
  13. };
  14. export default withNextra(nextOptions);