@shopbite-de/storefront 1.7.2 → 1.7.3
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/.env.example
CHANGED
package/nuxt.config.ts
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
// https://v3.nuxtjs.org/api/configuration/nuxt.config
|
|
2
2
|
const sw = process.env.SW === "true";
|
|
3
|
+
const storeName = process.env.STORE_NAME || "ShopBite";
|
|
3
4
|
|
|
4
5
|
export default defineNuxtConfig({
|
|
5
6
|
app: {
|
|
6
7
|
head: {
|
|
7
|
-
title:
|
|
8
|
+
title: storeName,
|
|
8
9
|
htmlAttrs: {
|
|
9
10
|
lang: "de",
|
|
10
11
|
},
|
|
@@ -23,7 +24,8 @@ export default defineNuxtConfig({
|
|
|
23
24
|
},
|
|
24
25
|
{
|
|
25
26
|
property: "og:description",
|
|
26
|
-
content:
|
|
27
|
+
content:
|
|
28
|
+
"Dein eigenes Bestellsystem ohne Provisionen, ohne monatliche Kosten – 100% Open Source und individuell anpassbar. Perfekt für Pizzerien, Imbisse und Lieferdienste.",
|
|
27
29
|
},
|
|
28
30
|
],
|
|
29
31
|
link: [{ rel: "icon", href: "/favicon.ico", type: "image/png" }],
|
|
@@ -114,24 +116,24 @@ export default defineNuxtConfig({
|
|
|
114
116
|
filename: sw ? "sw.ts" : undefined,
|
|
115
117
|
registerType: "autoUpdate",
|
|
116
118
|
manifest: {
|
|
117
|
-
name:
|
|
118
|
-
short_name:
|
|
119
|
+
name: storeName,
|
|
120
|
+
short_name: storeName,
|
|
119
121
|
theme_color: "#ff5b00",
|
|
120
122
|
icons: [
|
|
121
123
|
{
|
|
122
|
-
src: "
|
|
124
|
+
src: "logo-192.png",
|
|
123
125
|
sizes: "192x192",
|
|
124
126
|
type: "image/png",
|
|
125
127
|
},
|
|
126
128
|
{
|
|
127
|
-
src: "
|
|
129
|
+
src: "logo-512.png",
|
|
128
130
|
sizes: "512x512",
|
|
129
131
|
type: "image/png",
|
|
130
132
|
},
|
|
131
133
|
{
|
|
132
|
-
src: "
|
|
134
|
+
src: "logo-512.png",
|
|
133
135
|
sizes: "512x512",
|
|
134
|
-
type: "image/
|
|
136
|
+
type: "image/png",
|
|
135
137
|
purpose: "any maskable",
|
|
136
138
|
},
|
|
137
139
|
],
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|