index.ts 263 B

12345678
  1. export * from "./svgs";
  2. export * from "./assets/svgs";
  3. export const getAssets = (path: string) => {
  4. const fullPath = `/src/assets/${path}`;
  5. console.log(import.meta, fullPath);
  6. return (import.meta as any).globEager("/src/assets/**/*")[fullPath].default;
  7. };