We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6466efa commit 2e76863Copy full SHA for 2e76863
astro.config.mjs
@@ -89,7 +89,9 @@ export default defineConfig({
89
metaTags(),
90
pagefind(),
91
deleteUnusedImages(),
92
- compress(),
+ (await import("astro-compress")).default({
93
+ SVG: false,
94
+ }),
95
],
96
output: "static",
97
build: {
src/components/SocialMediaSponsorCard.astro
@@ -24,7 +24,7 @@ let height = width / aspectRatio;
24
const maxHeight = 220;
25
if (height > maxHeight) {
26
height = maxHeight;
27
- width = height * aspectRatio; // adjust width to maintain aspect ratio
+ width = height * aspectRatio ;
28
}
29
30
const x = 650 - width / 2;
0 commit comments