@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 +12 -1
- package/package.json +1 -1
- package/pages/app.vue +4 -2
- package/public/favicon/android-chrome-192x192.png +0 -0
- package/public/favicon/android-chrome-512x512.png +0 -0
- package/public/favicon/apple-touch-icon.png +0 -0
- package/public/favicon/favicon-16x16.png +0 -0
- package/public/favicon/favicon-32x32.png +0 -0
- package/public/favicon/favicon.ico +0 -0
- package/public/favicon/site.webmanifest +21 -0
- package/public/favicon.ico +0 -0
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
package/pages/app.vue
CHANGED
|
@@ -222,8 +222,10 @@ edgeGlobal.edgeState.menuItems = [
|
|
|
222
222
|
|
|
223
223
|
<template>
|
|
224
224
|
<Head>
|
|
225
|
-
<
|
|
226
|
-
<
|
|
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
|
|
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
|
+
}
|
package/public/favicon.ico
DELETED
|
Binary file
|