diff --git a/src/config.ts b/src/config.ts index a567e37..d1bc03e 100644 --- a/src/config.ts +++ b/src/config.ts @@ -5,13 +5,8 @@ import { staticCursors, animatedCursors, animatedClip } from "./cursors.json"; // Source Directory const svgsDir = path.resolve(__dirname, "svg"); -// Resolve Paths for svg -const staticSvgs = staticCursors.map((svg: string) => - path.resolve(svgsDir, svg) -); - // Out Directory const bitmapsDir = path.resolve(process.cwd(), "bitmaps"); if (!fs.existsSync(bitmapsDir)) fs.mkdirSync(bitmapsDir); -export { staticSvgs, animatedCursors, svgsDir, bitmapsDir, animatedClip }; +export { staticCursors, animatedCursors, svgsDir, bitmapsDir, animatedClip };