fix : attempt to bring back images
release-tag / release-image (push) Successful in 29s

This commit is contained in:
2024-12-21 19:26:48 +01:00
parent b3d535e122
commit 68ffb4ba08
+2 -2
View File
@@ -4,7 +4,7 @@ export const cards = {} as Record<string, Component>;
export const tokens = {} as Record<string, Component>;
export async function compileCards() {
const svgs = import.meta.glob("./assets/images/cards/heron-svg/*.svg", {
const svgs = import.meta.glob("@/assets/images/cards/heron-svg/*.svg", {
eager: true,
});
@@ -64,7 +64,7 @@ export async function compileCards() {
}
export async function compileTokens() {
const svgs = import.meta.glob("./assets/images/tokens/*.svg", {
const svgs = import.meta.glob("@/assets/images/tokens/*.svg", {
eager: true,
});