Any way to opt out of using next/link and instead use regular DOM anchor links with PlasmicLink?

is there any way to opt out of using next/link and instead use regular DOM anchor links with PlasmicLinks?

our routing strategy doesn’t play well with next/link’s prefetch so we’re thinking about moving away from it

one of our options is creating our own Link code component and use that instead of PlasmicLink, but not sure if there’s a better option

We solved it the same way. We have a custom component with an if statement that takes a boolean to behave accordingly from Plasmic

Would be nice indeed to have it solved in a more semantic way through Plasmic itself

@very_crab thanks Oz! yeah i think we’ll do something similar as well