Skip to content

Commit c3d32ed

Browse files
committed
design: fix web chore
1 parent b1090bb commit c3d32ed

File tree

4 files changed

+17
-6
lines changed

4 files changed

+17
-6
lines changed

public/image.png

20.6 KB
Loading

public/index.html

+15-5
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,17 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5+
<link
6+
rel="icon"
7+
type="image/png"
8+
sizes="16x16"
9+
href="%PUBLIC_URL%/image.png"
10+
/>
11+
<meta name="msapplication-TileColor" content="#ffffff" />
12+
<meta name="theme-color" content="#ffffff" />
513
<meta name="viewport" content="width=device-width, initial-scale=1" />
614
<meta name="theme-color" content="#000000" />
7-
<meta
8-
name="description"
9-
content="Web site created using create-react-app"
10-
/>
15+
<meta name="description" content="물가 동향 제공 웹 어플리케이션" />
1116
<!--
1217
manifest.json provides metadata used when your web app is installed on a
1318
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
@@ -22,7 +27,12 @@
2227
work correctly both with client-side routing and a non-root public URL.
2328
Learn how to configure a non-root public URL by running `npm run build`.
2429
-->
25-
<title>React App</title>
30+
<title>PriceSnap</title>
31+
<meta property="og:url" content="https://d6rlnxefknq73.cloudfront.net" />
32+
<meta property="og:title" content="PriceSnap" />
33+
<meta property="og:type" content="website" />
34+
<meta property="og:image" content="%PUBLIC_URL%/thumbnail.png" />
35+
<meta property="og:description" content="물가 동향 제공 웹 어플리케이션" />
2636
</head>
2737
<body>
2838
<noscript>You need to enable JavaScript to run this app.</noscript>

public/thumbnail.png

28.5 KB
Loading

src/api/UserContext.jsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,9 @@ export const UserProvider = ({ children }) => {
5959
{
6060
method: "DELETE",
6161
headers: {
62+
"Content-Type": "application/json",
6263
Authorization: `Bearer ${token}`,
63-
}, // 쿠키 포함
64+
},
6465
}
6566
);
6667

0 commit comments

Comments
 (0)