Skip to content

Commit

Permalink
fix: 48px icon does not update
Browse files Browse the repository at this point in the history
  • Loading branch information
stonith404 committed Mar 11, 2023
1 parent 0c2a62b commit 753dbe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/config/logo.service.ts
Expand Up @@ -18,7 +18,7 @@ export class LogoService {
}

async createPWAIcons(file: Buffer) {
const sizes = [72, 96, 128, 144, 152, 192, 384, 512];
const sizes = [48, 72, 96, 128, 144, 152, 192, 384, 512];

for (const size of sizes) {
const resized = await sharp(file).resize(size).toBuffer();
Expand Down

0 comments on commit 753dbe8

Please sign in to comment.