Skip to content

Commit

Permalink
project file updated
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsboost committed Aug 7, 2024
1 parent b0d0b55 commit f2301c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015-2023 Michael Schwartz <[email protected]>
Copyright (c) 2015-2024 Michael Schwartz <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 3 additions & 3 deletions go/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -2878,7 +2878,7 @@ ${project.description}`;
// Add icons to manifest.json based on image sizes
const sizes = ['192x192', '256x256', '384x384', '512x512'];
const icons = sizes.map(size => ({
"src": `../imgs/logo-${size}.png`,
"src": `./imgs/logo-${size}.png`,
"sizes": size,
"type": "image/png",
"purpose": "any"
Expand All @@ -2902,7 +2902,7 @@ ${project.description}`;
canvas.remove();
}

zip.file(`dist/manifest.json`, JSON.stringify({
zip.file(`manifest.json`, JSON.stringify({
"theme_color": "#13171f",
"background_color": "#13171f",
"display": "standalone",
Expand Down Expand Up @@ -3177,7 +3177,7 @@ plugins: [
<meta property="og:type" content="website" />
<meta property="og:title" content="${project.title}" />
<meta property="og:description" content="${project.description}" />
<link rel="manifest" href="dist/manifest.json">
<link rel="manifest" href="manifest.json">
<link rel="shortcut icon" type="image/x-icon" href="imgs/logo.svg">
<link rel="icon" type="image/svg+xml" href="imgs/logo.svg" />
<link rel="apple-touch-icon" href="imgs/logo.svg">
Expand Down

0 comments on commit f2301c8

Please sign in to comment.