From 5383b8530405dd3d2a721a14ab5f346ef5fbec2f Mon Sep 17 00:00:00 2001 From: beming-dev Date: Tue, 14 Jan 2025 11:30:31 +0900 Subject: [PATCH] Redirect --- next.config.js | 52 +++++++++++++++++++++++++------------------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/next.config.js b/next.config.js index 150be049..05a2a200 100644 --- a/next.config.js +++ b/next.config.js @@ -11,32 +11,32 @@ const withPWA = require("next-pwa")({ // eslint-disable-next-line @typescript-eslint/no-var-requires const baseNextConfig = { - // async redirects() { - // return [ - // { - // source: "/:path*", - // has: [ - // { - // type: "host", - // value: "studyabout.herokuapp.com", - // }, - // ], - // destination: "https://about-front.kro.kr/:path*", - // permanent: true, - // }, - // { - // source: "/:path*", - // has: [ - // { - // type: "host", - // value: "about-front.kro.kr", - // }, - // ], - // destination: "/:path*", - // permanent: false, // 기존 요청 유지 - // }, - // ]; - // }, + async redirects() { + return [ + { + source: "/:path*", + has: [ + { + type: "host", + value: "studyabout.herokuapp.com", + }, + ], + destination: "https://about-front.kro.kr/:path*", + permanent: true, + }, + { + source: "/:path*", + has: [ + { + type: "host", + value: "about-front.kro.kr", + }, + ], + destination: "/:path*", + permanent: false, // 기존 요청 유지 + }, + ]; + }, env: { NEXT_PUBLIC_KAKAO_CLIENT_ID: process.env.NEXT_PUBLIC_KAKAO_CLIENT_ID,