Skip to content

Commit

Permalink
🐛 Fix: baseURL 끝에 / 제거 (#206)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongmin59 authored Apr 21, 2024
1 parent e1b4a8c commit ee731cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/api/axiosConfig.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import axios from 'axios';

// Axios 인스턴스 생성
const axiosInstance = axios.create({
baseURL: 'https://api.pastforward.link/',
baseURL: 'https://api.pastforward.link',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = (env, argv) => {
proxy: [
{
context: ['/api'],
target: 'https://api.pastforward.link/',
target: 'https://api.pastforward.link',
},
],
},
Expand Down

0 comments on commit ee731cd

Please sign in to comment.