Skip to content

Commit

Permalink
feat: baseURL 환경 변수활용하여 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
osdoonhyun committed Nov 12, 2023
1 parent 52f7a9a commit 29f905d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions selq-client/src/apis/api.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import axios from 'axios';

export const serverApi = axios.create({
baseURL: 'https://selq.store/api',
// baseURL: process.env.PROD_BASE_URL,
baseURL: process.env.PROD_BASE_URL,
// baseURL: process.env.DEV_BASE_URL,
withCredentials: true,
});

0 comments on commit 29f905d

Please sign in to comment.