Skip to content

Commit

Permalink
fix: fix timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
Eeap committed Aug 10, 2023
1 parent 471dfe8 commit 1c768d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/axios.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ axios.interceptors.request.use(
config.url = url + config.url; //host 및 url 방식 수정필요
}
//헤더 셋팅
config.timeout = 20000;
config.timeout = 60000000;
config.headers['Authorization'] =
'Bearer ' + VueCookies.get('accessToken');
config.headers['X-refresh-token'] = VueCookies.get('refreshToken');
Expand Down

0 comments on commit 1c768d5

Please sign in to comment.