Skip to content

Commit

Permalink
feat: PWA 구성 - COMPLETED
Browse files Browse the repository at this point in the history
  • Loading branch information
qkrwoghd04 committed Jan 17, 2025
1 parent 11f167c commit 3a3fa7c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { VitePWA } from 'vite-plugin-pwa'

export default defineConfig({
plugins: [
react(), // 쉼표 추가
react(),
VitePWA({
registerType: 'autoUpdate',
devOptions: { enabled: true },
Expand All @@ -22,7 +22,12 @@ export default defineConfig({
manifest: {
name: 'AmazeMemo',
short_name: 'AmazeMemo',
description: "당신의 배움을 적어보세요",
theme_color: '#ffffff',
display: 'standalone',
scope: '/',
start_url: '/',
orientation: 'portrait',
icons: [
{
src: 'pwa-192x192.png',
Expand Down

0 comments on commit 3a3fa7c

Please sign in to comment.