Skip to content

Commit 1a6307f

Browse files
committed
Hotfix: 뷰포트 태그 추가
1 parent b8ba6f6 commit 1a6307f

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

lib/api/axiosInstanceApi.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import axios from "axios";
22

33
const axiosInstance = axios.create({
4-
baseURL: process.env.NEXT_PUBLIC_API_URL || "http://localhost:3000",
4+
baseURL: process.env.NEXT_PUBLIC_API_URL || "/",
55
});
66

77
export const proxy = axios.create({
8-
// 배포 이후에는 배포된 URL로 변경해야 함.gi
8+
// 배포 이후에는 배포된 URL로 변경해야 함.
99
baseURL: "https://linkbrary-9-99.vercel.app",
1010
});
1111

pages/_app.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,17 @@ export default function App({ Component, pageProps }: AppProps) {
1414
<>
1515
<Head>
1616
<meta property="og:type" content="website" />
17-
{/* <meta property="og:url" content="https://linkbrary.app" /> 배포 후 실제 도메인으로 변경 필요 */}
17+
<meta property="og:url" content="https://linkbrary-9-99.vercel.app/" />
1818
<meta property="og:title" content="Linkbrary" />
1919
<meta
2020
property="og:description"
2121
content="나만의 링크를 관리하는 Linkbrary"
2222
/>
2323
<meta property="og:image" content="/images/home_main.png" />
24+
<meta
25+
name="viewport"
26+
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
27+
/>
2428
<title>Linkbrary</title>
2529
</Head>
2630

0 commit comments

Comments
 (0)