diff --git a/deploy/nginx-sb-front.conf b/deploy/nginx-sb-front.conf index 7329130..0f3cd01 100644 --- a/deploy/nginx-sb-front.conf +++ b/deploy/nginx-sb-front.conf @@ -24,6 +24,15 @@ server { add_header Cache-Control "public, immutable"; } + # 설치파일 다운로드 — 배포(dist 교체)에 지워지지 않도록 root 밖의 영속 디렉터리에서 서빙. + # 서버에 /var/www/sb-downloads/ 를 만들고 설치파일(SlimBudget-Setup.exe)을 올려두세요. + # 예) sudo mkdir -p /var/www/sb-downloads && sudo cp SlimBudget-Setup.exe /var/www/sb-downloads/ + location /download/ { + alias /var/www/sb-downloads/; + add_header Content-Disposition "attachment"; + autoindex off; + } + # API 프록시 → 백엔드(8080) location /api/ { proxy_pass http://127.0.0.1:8080; diff --git a/package.json b/package.json index ca7e151..a2791bf 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,8 @@ ], "win": { "target": "nsis", - "icon": "assets/icon-only.png" + "icon": "assets/icon-only.png", + "artifactName": "SlimBudget-Setup.${ext}" }, "nsis": { "oneClick": false, diff --git a/src/components/WebOnlyNotice.vue b/src/components/WebOnlyNotice.vue index 26cde7f..8fb93b6 100644 --- a/src/components/WebOnlyNotice.vue +++ b/src/components/WebOnlyNotice.vue @@ -1,10 +1,9 @@ @@ -14,13 +13,18 @@ function download() { 슬림하게 관리하는 가계부 · 자산 · 예산 - 📱 이 서비스는 앱에서 이용할 수 있어요. - PC·모바일 웹에서는 안내만 제공됩니다. 앱을 설치한 뒤 로그인해 주세요. + 🖥️ PC는 설치형 앱으로, 📱 모바일은 앱으로 이용해요. + 웹 브라우저에서는 안내만 제공됩니다. 설치한 뒤 로그인해 주세요. - - {{ downloadReady ? '앱 다운로드' : '앱 다운로드 (준비 중)' }} - + + + 🖥️ PC 버전 다운로드 (Windows) + + + {{ mobileReady ? '📱 모바일 앱 다운로드' : '📱 모바일 앱 (준비 중)' }} + + 📒간편한 가계부수입·지출을 빠르게 기록 @@ -72,7 +76,13 @@ function download() { font-size: 0.86rem; opacity: 0.7; } +.dl-group { + display: flex; + flex-direction: column; + gap: 0.6rem; +} .dl-btn { + display: block; width: 100%; padding: 0.8rem 1rem; border: 1px solid hsla(160, 100%, 37%, 1); @@ -81,7 +91,17 @@ function download() { color: #fff; font-size: 1rem; font-weight: 600; + text-align: center; + text-decoration: none; cursor: pointer; + box-sizing: border-box; +} +.dl-btn:hover { + background: hsla(160, 100%, 32%, 1); +} +.dl-btn.ghost { + background: transparent; + color: hsla(160, 100%, 37%, 1); } .dl-btn:disabled { opacity: 0.55;
슬림하게 관리하는 가계부 · 자산 · 예산
📱 이 서비스는 앱에서 이용할 수 있어요.
PC·모바일 웹에서는 안내만 제공됩니다. 앱을 설치한 뒤 로그인해 주세요.
🖥️ PC는 설치형 앱으로, 📱 모바일은 앱으로 이용해요.
웹 브라우저에서는 안내만 제공됩니다. 설치한 뒤 로그인해 주세요.