I mean the page show
This page does not seem to exist…
We apologize for the inconvenience, but the page you were trying to access is not at this address. You can use the links below to help you find what you are looking for.
If you are certain you have the correct web address but are encountering an error, please contact the Site Administration .
Thank you.
erral
(Mikel Larreategi)
May 21, 2025, 6:43am
2
Volto has a NotFound
component registered in the routes.js
file:
Have you tried overriding/shadowing it?
import { useEffect } from 'react';
import BodyClass from '@plone/volto/helpers/BodyClass/BodyClass';
import { FormattedMessage } from 'react-intl';
import { Link } from 'react-router-dom';
import { Container } from 'semantic-ui-react';
import {
toBackendLang,
withServerErrorCode,
} from '@plone/volto/helpers/Utils/Utils';
import { useDispatch, useSelector } from 'react-redux';
import { getNavigation } from '@plone/volto/actions/navigation/navigation';
import config from '@plone/volto/registry';
/**
* Not found function.
* @function NotFound
* @returns {string} Markup of the not found page.
*/
const NotFound = () => {
const dispatch = useDispatch();
This file has been truncated. show original