temp push

This commit is contained in:
2023-12-19 19:38:32 +01:00
parent adf343e0bf
commit 83e901491f
2 changed files with 4 additions and 6 deletions

View File

@ -3,12 +3,12 @@
"short_name": "Topos", "short_name": "Topos",
"icons": [ "icons": [
{ {
"src": "src/assets/android-chrome-192x192.png", "src": "favicon/android-chrome-192x192.png",
"sizes": "192x192", "sizes": "192x192",
"type": "image/png" "type": "image/png"
}, },
{ {
"src": "src/assets/android-chrome-512x512.png", "src": "favicon/android-chrome-512x512.png",
"sizes": "512x512", "sizes": "512x512",
"type": "image/png" "type": "image/png"
} }
@ -21,14 +21,14 @@
"description": "Topos is a web based live coding platform", "description": "Topos is a web based live coding platform",
"screenshots": [ "screenshots": [
{ {
"src": "src/assets/screenshot_miniature.png", "src": "favicon/screenshot_miniature.png",
"sizes": "640x320", "sizes": "640x320",
"type": "image/gif", "type": "image/gif",
"form_factor": "wide", "form_factor": "wide",
"label": "Topos application" "label": "Topos application"
}, },
{ {
"src": "src/assets/topos_code.png", "src": "favicon/topos_code.png",
"sizes": "1280x768", "sizes": "1280x768",
"type": "image/gif", "type": "image/gif",
"label": "Topos code" "label": "Topos code"

View File

@ -55,7 +55,6 @@ export default defineConfig(({ command, mode, ssrBuild }) => {
cssCodeSplit: true, cssCodeSplit: true,
cssMinify: true, cssMinify: true,
minify: true, minify: true,
publicDir: "favicon",
} }
}; };
} else { } else {
@ -68,7 +67,6 @@ export default defineConfig(({ command, mode, ssrBuild }) => {
cssCodeSplit: true, cssCodeSplit: true,
cssMinify: true, cssMinify: true,
minify: true, minify: true,
publicDir: "favicon",
}, },
}; };
} }