From 97c15a491a2df0ffe9495a95d1be3e0e8620d84b Mon Sep 17 00:00:00 2001 From: Brad Cornes Date: Tue, 26 Oct 2021 10:41:29 +0100 Subject: [PATCH] Fix next build --- next.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index 1bc3182..09cf14a 100644 --- a/next.config.js +++ b/next.config.js @@ -90,7 +90,7 @@ module.exports = withBundleAnalyzer({ config.entry = async () => { const entries = { ...(await originalEntry()) } - entries['./scripts/build-rss.js'] = './scripts/build-rss.js' + entries['scripts/build-rss'] = './scripts/build-rss.js' return entries } }