@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
@@ -19,4 +19,6 @@ OPENAPI_JSON_URL="https://shopware.shopbite.net"
19
19
  NUXT_GEOAPIFY_API_KEY=
20
20
 
21
21
  NUXT_PUBLIC_SCRIPTS_MATOMO_ANALYTICS_MATOMO_URL=
22
- NUXT_PUBLIC_SCRIPTS_MATOMO_ANALYTICS_SITE_ID=
22
+ NUXT_PUBLIC_SCRIPTS_MATOMO_ANALYTICS_SITE_ID=
23
+
24
+ NUXT_STORE_NAME="ShopBite"
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: "ShopBite – Kostenloses Online-Bestellsystem für Gastronomie",
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: "Italienisch-deutsche Küche in Obertshausen",
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: "ShopBite",
118
- short_name: "ShopBite",
119
+ name: storeName,
120
+ short_name: storeName,
119
121
  theme_color: "#ff5b00",
120
122
  icons: [
121
123
  {
122
- src: "shopbite-192.png",
124
+ src: "logo-192.png",
123
125
  sizes: "192x192",
124
126
  type: "image/png",
125
127
  },
126
128
  {
127
- src: "shopbite-512.png",
129
+ src: "logo-512.png",
128
130
  sizes: "512x512",
129
131
  type: "image/png",
130
132
  },
131
133
  {
132
- src: "shopbite-512.png",
134
+ src: "logo-512.png",
133
135
  sizes: "512x512",
134
- type: "image/svg",
136
+ type: "image/png",
135
137
  purpose: "any maskable",
136
138
  },
137
139
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopbite-de/storefront",
3
- "version": "1.7.2",
3
+ "version": "1.7.3",
4
4
  "main": "nuxt.config.ts",
5
5
  "description": "Shopware storefront for food delivery shops",
6
6
  "keywords": [
File without changes
File without changes