Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Axios instance 구현 #69

Merged
merged 3 commits into from
Nov 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"dev:prod": "env-cmd -f .env.production vite",
"test": "env-cmd -f .env.development npx vitest --ui",
"test:prod": "env-cmd -f .env.production npx vitest --ui",
"preview": "env-cmd -f .env.production npm run build && npm run preview",
"preview": "env-cmd -f .env.production npm run build && vite preview",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:eslint": "eslint --ext ts,tsx \"src/**/*.{ts,tsx}\"",
Expand Down
18 changes: 18 additions & 0 deletions src/api/axiosInstance.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import axios from 'axios';

import { setAuthorization } from './interceptors';

const PROD = import.meta.env.MODE === 'production';

const baseURL = PROD
? `${location.protocol}//${location.host}`
: import.meta.env.VITE_BASE_URL;

export const axiosInstance = axios.create({
baseURL,
headers: {
'Content-type': 'application/json',
},
});

axiosInstance.interceptors.request.use(setAuthorization);
Empty file removed src/api/index.ts
Empty file.
15 changes: 15 additions & 0 deletions src/api/interceptors.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { InternalAxiosRequestConfig } from 'axios';

export const setAuthorization = (config: InternalAxiosRequestConfig) => {
const stringifiedAccssToken = localStorage.getItem('ACCESS_TOKEN');
if (!stringifiedAccssToken) {
return config;
}

const accessToken = JSON.parse(stringifiedAccssToken);
if (accessToken) {
config.headers.Authorization = `Bearer ${accessToken}`;
}

return config;
};
3 changes: 3 additions & 0 deletions vercel.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"rewrites": [{ "source": "/(.*)", "destination": "/" }]
}