diff --git a/services/loadCards.ts b/services/loadCards.ts index 7ee140c..a584915 100644 --- a/services/loadCards.ts +++ b/services/loadCards.ts @@ -4,7 +4,7 @@ export const cards = {} as Record; export const tokens = {} as Record; 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, });