Not Found

xxx

VitNode has implemented own 404 page. You can create your own page by modifying the app/[locale]/(main)/not-found.tsx file.

import { ErrorView } from 'vitnode/views/error/error-view';
 
export default function NotFoundPage() {
  return <ErrorView code={404} />;
}