Skip to content

Commit

Permalink
fix(client): include 512px icon in web build
Browse files Browse the repository at this point in the history
- missing in 35cf39f
  • Loading branch information
neopostmodern committed Aug 12, 2022
1 parent cb6d2e2 commit 67a8fbb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion client/.erb/configs/webpack.config.base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ export const createPluginsForPWA = ({
return [];
}
const assetsFolderPath = path.join(__dirname, '../../assets');
const assetFileNames = ['manifest.webmanifest', 'icons/256x256.png'];
const assetFileNames = [
'manifest.webmanifest',
'icons/256x256.png',
'icons/512x512.png',
];
return [
new GenerateSW({
clientsClaim: true,
Expand Down

0 comments on commit 67a8fbb

Please sign in to comment.