Skip to content

Commit b6756ec

Browse files
committed
chore(Sponsors): vite-ignore
1 parent 691aed6 commit b6756ec

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

2025/src/components/Sponsors/Company.astro

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
---
2-
// Company.astro
32
type Props = {
43
sponsor: {
54
rank: "platinum" | "gold" | "silver" | "bronze";
@@ -14,7 +13,7 @@ const { rank, name, url, image } = props.sponsor;
1413
1514
let imageUrl = "";
1615
try {
17-
const module = await import(`../../assets/sponsors/${image}?url`);
16+
const module = await import(/* @vite-ignore */ `../../assets/sponsors/${image}?url`);
1817
imageUrl = module.default;
1918
} catch (e) {
2019
console.error(`Icon not found: ${image}`);

0 commit comments

Comments
 (0)