Skip to content

Commit 2fedd73

Browse files
[#116] feat: 파비콘 설정 (#117)
1 parent f9e4e12 commit 2fedd73

2 files changed

Lines changed: 13 additions & 0 deletions

File tree

public/wherecar_favicon.ico

2.11 KB
Binary file not shown.

src/app/layout.tsx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,19 @@ const inter = Inter({ subsets: ["latin"] });
99
export const metadata: Metadata = {
1010
title: "WHERE CAR",
1111
description: "차량 관리 시스템",
12+
icons: [
13+
{
14+
rel: 'icon',
15+
url: 'wherecar_favicon.ico',
16+
type: 'image/svg+xml',
17+
},
18+
{
19+
rel: 'icon',
20+
url: '/wherecar_favicon.ico',
21+
type: 'image/svg+xml',
22+
sizes: '32x32',
23+
},
24+
],
1225
};
1326

1427
export default function RootLayout({

0 commit comments

Comments
 (0)