Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 서버동기화
- setInterval 정지
- setInterval 외부 정지
- datagridview 직접입력
- mosquitto.conf
- pm2 상태 확인
- pm2
- mosquitto
- 공인IP
- html #select #option #multiple
- invalid data
- 데이터테이블 데이터 넣기
- pm2 시작
- map이 undefined가 뜰 때
- timepicker
- AntDesign
- DatePicker
- listener 1883
- setInterval 중지
- c# datagridview 데이터 넣기
- pm2 설치
- 1883
- DataGridView 직접 입력
- setInterval clear
- transfer
- allow_anonymouse
- Replication
- mySQL_Replication
- 맥 어드레스
- pm2 확인
Archives
- Today
- Total
개발 노트
next.js kakao map api 사용 중 cross origin error 본문
// next.config.js
const nextConfig = {
reactStrictMode: true,
async headers() {
return [
{
// matching all API routes
source: "/api/:path*",
headers: [
{ key: "Access-Control-Allow-Credentials", value: "true" },
{ key: "Access-Control-Allow-Origin", value: "*" },
{
key: "Access-Control-Allow-Methods",
value: "GET,OPTIONS,PATCH,DELETE,POST,PUT",
},
{
key: "Access-Control-Allow-Headers",
value:
"X-CSRF-Token, X-Requested-With, Accept, Accept-Version, Content-Length, Content-MD5, Content-Type, Date, X-Api-Version",
},
],
},
];
},
webpack(config, options) {
config.module.rules.push({
test: /\.svg$/,
issuer: { and: [/\.(js|ts)x?$/] },
use: ["@svgr/webpack"],
});
return config;
},
};
module.exports = nextConfig;
'React' 카테고리의 다른 글
next.js 언어모듈 참고 (0) | 2024.01.18 |
---|---|
npm Cannot read properties of undefined (reading 'stdin') error (0) | 2024.01.17 |
kakaomap 연동하기 (0) | 2024.01.15 |
NextAuth로 구글로그인 구현하기 (0) | 2024.01.09 |
Next.js app router 기본 (0) | 2024.01.04 |