next.config.mjs 296 B

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