We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WAIS/backend/app.js
Line 25 in 74b6e0b
app.use(cors()); 로 변경해서 모든 도메인을 허용하거나
app.use(cors());
추후 서비스 공식 url 을 만들면(ex. www.wias.com) let corsOptions = { origin: 'http://www.wias.com', credentials: true } app.use(cors(corsOptions)); 로 변경해야함.
let corsOptions = { origin: 'http://www.wias.com', credentials: true } app.use(cors(corsOptions));
The text was updated successfully, but these errors were encountered:
No branches or pull requests
WAIS/backend/app.js
Line 25 in 74b6e0b
app.use(cors());
로 변경해서 모든 도메인을 허용하거나
추후 서비스 공식 url 을 만들면(ex. www.wias.com)
let corsOptions = { origin: 'http://www.wias.com', credentials: true } app.use(cors(corsOptions));
로 변경해야함.
The text was updated successfully, but these errors were encountered: