Skip to content

Commit

Permalink
chore: 테스트용 콘솔 출력 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
bbearcookie committed Oct 29, 2023
1 parent c52fa3d commit 102da05
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/react-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
echo "VITE_CHANNEL_ID=${{ secrets.VITE_CHANNEL_ID }}" >> .env
echo "VITE_SLACK_ID_DESCRIPTION=${{ secrets.VITE_SLACK_ID_DESCRIPTION }}" >> .env
cat .env
- run: yarn
- run: yarn web build

Expand Down
2 changes: 2 additions & 0 deletions packages/web/src/apis/instance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import { AUTH_TOKEN } from '@/constants/storageKey';
const baseURL = import.meta.env.VITE_API_ENDPOINT;
const slackURL = import.meta.env.VITE_SLACK_API_ENDPOINT;

console.log(baseURL);

export const baseInstance = axios.create({ baseURL });
export const authInstance = axios.create({ baseURL });
export const formDataInstance = axios.create({ baseURL });
Expand Down

0 comments on commit 102da05

Please sign in to comment.