Skip to content

Commit 547190e

Browse files
authored
Merge pull request #101 from GDGoCINHA/develop
Fix(#4) 프록시 대상 주소 변경
2 parents 661b0aa + 1cc3bbc commit 547190e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/api/auth/[route]/route.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { NextResponse } from 'next/server';
33
import axios from 'axios';
44

5-
const API_BASE_URL = 'https://gdgocinha.com/api/auth'; // 프록시 대상 주소
5+
const API_BASE_URL = 'https://gdgocinha.site/auth'; // 프록시 대상 주소
66

77
export async function POST(req, { params }) {
88
const action = params.action; // 'refresh' or 'logout'

0 commit comments

Comments
 (0)