Page Not Found when deployed in Netlify
Hi guys.
I’m having a 404 (Not Found) error when I’m trying to run the simple tutorial blog site
I’m having a 404 (Not Found) error when I’m trying to run the simple tutorial blog site

npm run build and see if it fails. Then you can start dev server from built app to check if there are any errors causing this.authProvider/login404.tsx/pages// Using `loader`
// app/routes/$.tsx
import { json, LoaderFunction } from "@remix-run/node";
export const loader: LoaderFunction = async ({ params, request, context }) => {
return json({}, { status: 404 });
};
// Using `Authenticated`
// app/routes/$.tsx
import { Authenticated } from "@refinedev/core";
export default function NotFound() {
return (
<Authenticated>
<div>I'm the 404 page for the authenticated users.</div>
</Authenticated>
);
}