From b0ad968622c027d5317ba59f5578c5d805e2d6d5 Mon Sep 17 00:00:00 2001 From: Joshua Coles Date: Wed, 20 Dec 2023 19:08:42 +0000 Subject: [PATCH] Update dev api proxy to use prod endpoint --- next.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index e592495..6a31649 100644 --- a/next.config.js +++ b/next.config.js @@ -4,7 +4,7 @@ const nextConfig = { rewrites: async () => [ { source: '/api/:path*', - destination: 'http://cosmos:8074/:path*', + destination: 'https://revision.joshuacoles.me/api/:path*', }, ], }