Skip to content

Commit

Permalink
Merge pull request #221 from buggregator/issue/#77-pwa
Browse files Browse the repository at this point in the history
#77 add base version of pwa manifest
  • Loading branch information
Kreezag committed Aug 23, 2024
2 parents ed36531 + e5595ef commit 52d52ba
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ ENV VITE_APP_MODE=production

RUN sed -i "s/\"version\": \".*\"/\"version\": \"${APP_VERSION}\"/" package.json

RUN sed -i "s/\"version\": \".*\"/\"version\": \"${APP_VERSION}\"/" src/static/manifest.json

RUN yarn install --ignore-scripts
RUN yarn generate
RUN rm -rf node_modules
Expand Down
1 change: 1 addition & 0 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export default defineNuxtConfig({
],
link: [
{rel: "icon", type: "image/x-icon", href: "/favicon/favicon.ico"},
{rel: "manifest", href: "manifest.json"},
],
},
},
Expand Down
26 changes: 26 additions & 0 deletions src/static/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"version": "1.22.1",
"short_name": "Buggregator",
"name": "Buggregator",
"manifest_version": 2,
"lang": "en",
"icons": [
{
"src": "/favicon/android-chrome-512x512.png",
"type": "image/png",
"sizes": "512x512"
},
{
"src": "/favicon/android-chrome-192x192.png",
"type": "image/png",
"sizes": "192x192"
}
],
"author": "Pavel Buchnev",
"start_url": "/",
"background_color": "#1F2937",
"display": "standalone",
"scope": "/",
"theme_color": "#1F2937",
"description": "Buggregator is a free, multi-purpose server tool designed primarily for debugging PHP applications, but it's also compatible with other programming languages. Think of it as a Swiss Army knife for developers. What makes it special is that it offers a range of features that you would usually find in various paid tools, but it's available for free."
}

0 comments on commit 52d52ba

Please sign in to comment.