chore: install @svgr/webpack

This commit is contained in:
2026-05-28 11:03:38 -07:00
parent b95093ee81
commit 76ec6a0d89
Vendored
+8
View File
@@ -0,0 +1,8 @@
// Override Next's default `*.svg` typing so SVG imports return a React component
// (matches the @svgr/webpack runtime behavior configured in next.config.ts).
declare module "*.svg" {
import type { FC, SVGProps } from "react";
const Component: FC<SVGProps<SVGSVGElement>>;
export default Component;
}