@stoker-platform/web-app 0.5.168 → 0.5.169

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @stoker-platform/web-app
2
2
 
3
+ ## 0.5.169
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: correct PWA icon map
8
+
3
9
  ## 0.5.168
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stoker-platform/web-app",
3
- "version": "0.5.168",
3
+ "version": "0.5.169",
4
4
  "type": "module",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "scripts": {
package/vite.config.ts CHANGED
@@ -36,13 +36,13 @@ export default defineConfig(async ({ mode }) => {
36
36
  display: "standalone",
37
37
  icons: [
38
38
  {
39
- src: "pwa-192x192.png",
40
- sizes: "192x192",
39
+ src: "pwa-64x64.png",
40
+ sizes: "64x64",
41
41
  type: "image/png",
42
42
  },
43
43
  {
44
- src: "pwa-512x512.png",
45
- sizes: "512x512",
44
+ src: "pwa-192x192.png",
45
+ sizes: "192x192",
46
46
  type: "image/png",
47
47
  },
48
48
  {
@@ -52,7 +52,7 @@ export default defineConfig(async ({ mode }) => {
52
52
  purpose: "any",
53
53
  },
54
54
  {
55
- src: "pwa-512x512.png",
55
+ src: "maskable-icon-512x512.png",
56
56
  sizes: "512x512",
57
57
  type: "image/png",
58
58
  purpose: "maskable",