tum-esm/utils

View on GitHub
docs/next.config.js

Summary

Maintainability
A
0 mins
Test Coverage
const withNextra = require("nextra")({
  theme: "nextra-theme-docs",
  themeConfig: "./theme.config.jsx",
});

module.exports = withNextra({
  images: {
    unoptimized: true,
  },
  output: "export",
});

// If you have other Next.js configurations, you can pass them as the parameter:
// module.exports = withNextra({ /* other next.js config */ })