Inflearn brand logo image

Inflearn Community Q&A

qnrjs42's profile image
qnrjs42

asked

[Renewed] Node.js Textbook - From Basics to Project Practice

Understanding CORS

cors({ origin: 'http://...' })

Resolved

Written on

·

158

4

app.use(cors({
  origin: ['http://localhost:4000', 'http://localhost:4001'],
  credentials: true,
}));

http:// 를 붙여줘야 저렇게 사용할 수 있는 것 같습니다.

mongodbnodejsmysqlSequelize

Answer 1

1

zerocho님의 프로필 이미지
zerocho
Instructor

감사합니다~

qnrjs42's profile image
qnrjs42

asked

Ask a question