From 03768afea0b44ce4c4811fd121b0f24701971221 Mon Sep 17 00:00:00 2001 From: Mike Decker Date: Thu, 23 Nov 2023 18:04:30 -0800 Subject: [PATCH] fixup --- next.config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/next.config.js b/next.config.js index d955d279..e88ad067 100644 --- a/next.config.js +++ b/next.config.js @@ -28,6 +28,10 @@ const nextConfig = { destination: '/_next/image?url=:url', has: [{ type: 'query', key: 'url', value: '(?.*[jpg|png|jpeg|gif]\?itok=([\\w|-]+)).*' }], }, + { + source: '/wp-:path*', + destination: '/not-found', + } ], }; },