Skip to content

Commit

Permalink
Merge pull request #32 from KDT-hahahoho/Feat/#29
Browse files Browse the repository at this point in the history
뷰포트 오류해결
  • Loading branch information
woojoung1217 authored Oct 18, 2024
2 parents f3aa923 + b371bf2 commit 99526ca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
8 changes: 3 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/apple-touch-icon-180x180.png" sizes="180x180" />
<link rel="mask-icon" href="/mask-icon.svg" color="#FFFFFF" />
<meta name="theme-color" content="#ffffff" />
<title>Wish-위시</title>
<link rel="icon" type="image/svg+xml" href="public/icons/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wish</title>
</head>
<body>
<div id="root"></div>
Expand Down
6 changes: 3 additions & 3 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ export default defineConfig({
theme_color: '#ffffff', // 테마 색상
icons: [
{
src: '/icons/icon-192x192.png', // 아이콘 경로
src: 'public/icons/pwa-192x192.png',
sizes: '192x192',
type: 'image/png',
},
{
src: '/icons/icon-512x512.png', // 큰 아이콘 경로
src: 'public/icons/pwa-512x512.png',
sizes: '512x512',
type: 'image/png',
},
{
src: '/icons/icon-512x512.png',
src: 'public/icons/pwa-512x512.png',
sizes: '512x512',
type: 'image/png',
purpose: 'any maskable',
Expand Down

0 comments on commit 99526ca

Please sign in to comment.