diff --git a/examples/with-zones/home/next.config.js b/examples/with-zones/home/next.config.js index b893ee1006..d27449f151 100644 --- a/examples/with-zones/home/next.config.js +++ b/examples/with-zones/home/next.config.js @@ -1,8 +1,12 @@ const { BLOG_URL } = process.env module.exports = { - rewrites() { + async rewrites() { return [ + { + source: '/:path*', + destination: `/:path*`, + }, { source: '/blog', destination: `${BLOG_URL}/blog`,