I have a Link
on my app page which when running my app locally works as it should:
import { Link } from "@remix-run/react";
<Link variant="primary" to={`/app/discount-function/${id}/create`}>Create Discount</Link>
However when I deploy the app to Cloudflare Pages, this link does not work. Just nothing happens when it’s clicked.
Anyone have any thoughts or ideas as to what is causing this?
Thanks!