From 3ad84a7c15ad41f026971eeac295781532219d11 Mon Sep 17 00:00:00 2001 From: Agusti Fernandez Pardo Date: Fri, 15 Apr 2022 19:09:35 +0200 Subject: [PATCH] fix back api to rewrite --- next.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/next.config.js b/next.config.js index fd93748c8c..fa5bc84e10 100644 --- a/next.config.js +++ b/next.config.js @@ -13,8 +13,8 @@ module.exports = withTM({ async headers() { return [ { - // matching all routes, because we redirect to API in rewrites - source: "/:path*", + // matching all API routes + source: "/api/:path*", headers: [ { key: "Access-Control-Allow-Credentials", value: "true" }, { key: "Access-Control-Allow-Origin", value: "*" },