전체 글 523

[ Next ] api 통신 시 cors에러 해결 방법

next.config.js 파일에 rewrites를 작성해서 우회 시킨다. 여기서 중요한 점은 rewrites설정 했으면 api보낼때 앞에 baseUrl을 붙이면 안된다. const nextConfig = { reactStrictMode: true, swcMinify: true, async rewrites() { return [ { source: '/api/:path*', destination: `${process.env.NEXT_PUBLIC_SERVER_URL}/:path*` }, ] }, } module.exports = nextConfig export const api = axios.create({ baseURL: `/api`, withCredentials: true, timeout: 600000 ..

FE/Next 라넌.B 2023.03.21

[ Gmail ] outlook.kr 계정에서 Gmail 발송 실패

증상 outlook.com 은 발송이 되는데 outlook.kr 은 Gmail 발송이 안됨 해결 항의 폼 작성 원문 https://manual.daouoffice.co.kr/hc/ko/articles/900006156646-Gmail%EB%A1%9C-%EB%A9%94%EC%9D%BC%EC%9D%B4-%EB%B0%9C%EC%86%A1%EB%90%98%EC%A7%80-%EC%95%8A%EC%8A%B5%EB%8B%88%EB%8B%A4- 항의 폼 https://support.google.com/mail/contact/gmail_bulk_sender_escalation?hl=en&rd=2&visit_id=637940589956462820-2305576500 Sender Contact Form - Gmail Hel..

Team/난감했던 이슈들 HEON.D 2023.03.16