atolink
v0.1.18
Published
SWC plugin for converting a tags to Links
Readme
SWC plugin for transforming a tags to Link components in JSX
Config
["atolink", { "component": "Link", "package": "next/link" }]Example
// source
const Component = () => {
return <a href="/">Home</a>;
};
// target
import Link from "next/link";
const Component = () => {
return <Link href="/">Home</Link>;
};