From 38dab99f0dcdcd7ab719528c81df38450ed5b742 Mon Sep 17 00:00:00 2001 From: Alessio Fanelli Date: Wed, 3 Jan 2024 22:04:16 -0800 Subject: [PATCH] Update next.config.js to make it easier to add plugins --- next.config.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index 499fb45..3a956ec 100644 --- a/next.config.js +++ b/next.config.js @@ -1,2 +1,6 @@ -const withNextra = require('nextra')('nextra-theme-blog', './theme.config.js') +const withNextra = require('nextra')({ + theme: 'nextra-theme-blog', + themeConfig: './theme.config.js' +}) + module.exports = withNextra()