@edgedev/create-edge-app 1.1.14 → 1.1.15

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/nuxt.config.ts CHANGED
@@ -6,6 +6,17 @@ export default defineNuxtConfig({
6
6
  registrationCode: process.env.REGISTRATION_CODE,
7
7
  },
8
8
  },
9
+ app: {
10
+ head: {
11
+ link: [
12
+ { rel: 'icon', type: 'image/png', href: '/favicon/favicon-96x96.png', sizes: '96x96' },
13
+ { rel: 'icon', type: 'image/svg+xml', href: '/favicon/favicon.svg' },
14
+ { rel: 'shortcut icon', href: '/favicon/favicon.ico' },
15
+ { rel: 'apple-touch-icon', sizes: '180x180', href: '/favicon/apple-touch-icon.png' },
16
+ { rel: 'manifest', href: '/favicon/site.webmanifest' },
17
+ ],
18
+ },
19
+ },
9
20
  modules: ['@vant/nuxt', '@nuxtjs/tailwindcss', '@nuxtjs/color-mode', 'shadcn-nuxt'],
10
21
  shadcn: {
11
22
  /**
@@ -45,4 +56,4 @@ export default defineNuxtConfig({
45
56
  },
46
57
  },
47
58
  devtools: { enabled: false },
48
- })
59
+ })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edgedev/create-edge-app",
3
- "version": "1.1.14",
3
+ "version": "1.1.15",
4
4
  "description": "Create Edge Starter App",
5
5
  "bin": {
6
6
  "create-edge-app": "./bin/cli.js"
package/pages/app.vue CHANGED
@@ -222,8 +222,10 @@ edgeGlobal.edgeState.menuItems = [
222
222
 
223
223
  <template>
224
224
  <Head>
225
- <title>Edge App</title>
226
- <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, viewport-fit=cover">
225
+ <Title>Edge App</Title>
226
+ <Meta name="apple-mobile-web-app-capable" content="yes" />
227
+ <Meta name="apple-mobile-web-app-status-bar-style" content="default" />
228
+ <Meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, viewport-fit=cover" />
227
229
  </Head>
228
230
  <Toaster />
229
231
  <div class="flex flex-col h-[calc(100vh+200px)]">
Binary file
Binary file
Binary file
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "FormFling",
3
+ "short_name": "FormFling",
4
+ "icons": [
5
+ {
6
+ "src": "/android-chrome-192x192.png",
7
+ "sizes": "192x192",
8
+ "type": "image/png"
9
+ },
10
+ {
11
+ "src": "/android-chrome-512x512.png",
12
+ "sizes": "512x512",
13
+ "type": "image/png"
14
+ }
15
+ ],
16
+ "theme_color": "#ffffff",
17
+ "background_color": "#ffffff",
18
+ "display": "standalone",
19
+ "start_url": "/",
20
+ "scope": "/"
21
+ }
Binary file