From 8eb1e72259e3ff110bff2bddcb170c4bdcdf5dce Mon Sep 17 00:00:00 2001 From: Olexii Bulhakov Date: Fri, 12 Jan 2024 21:56:43 +0200 Subject: [PATCH] Changed next.config --- next.config.mjs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/next.config.mjs b/next.config.mjs index f74e115..98d7e18 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,11 +1,14 @@ +/** + * @type {import('next').NextConfig} + */ import nextra from "nextra"; +const nextConfig = {}; + const withNextra = nextra({ theme: "nextra-theme-docs", themeConfig: "./pages/docs-theme.config.jsx", latex: true, }); -export default withNextra({ - reactStrictMode: true, -}); +module.exports = withNextra({ nextConfig });