Skip to content

Commit

Permalink
generate assets
Browse files Browse the repository at this point in the history
  • Loading branch information
craigkai committed Oct 15, 2024
1 parent 830c056 commit 076ceda
Show file tree
Hide file tree
Showing 9 changed files with 580 additions and 3 deletions.
560 changes: 560 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "vitest",
"lint": "prettier --check . && eslint .",
"format": "prettier --write ."
"format": "prettier --write .",
"generate-pwa-assets": "pwa-assets-generator --preset minimal-2023 static/vball.svg"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
Expand All @@ -35,6 +36,7 @@
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"@vercel/analytics": "^1.3.1",
"@vite-pwa/assets-generator": "^0.2.6",
"autoprefixer": "^10.4.20",
"bits-ui": "^0.21.16",
"class-variance-authority": "^0.7.0",
Expand Down
Binary file added static/apple-touch-icon-180x180.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/favicon.ico
Binary file not shown.
19 changes: 17 additions & 2 deletions static/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,25 @@
"theme_color": "#ffffff",
"icons": [
{
"src": "vball.svg",
"src": "pwa-64x64.png",
"sizes": "64x64",
"type": "image/png"
},
{
"src": "pwa-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "pwa-512x512.png",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "maskable-icon-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"
"purpose": "maskable"
}
]
}
Binary file added static/maskable-icon-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/pwa-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/pwa-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/pwa-64x64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 076ceda

Please sign in to comment.