404 page
Add 404 Page
@tuya/dumi-theme-tuya provides a built-in 404 page component that you can use directly by adding code in SRC /app.ts:
// src/app.tsimport { NotFound } from '@tuya/dumi-theme-tuya/exports';export function patchRoutes({ routes }) {routes[2].routes.push({path: '*',component: NotFound,});}