Files
trouvetonprofile/src/app/routes/not-found/not-found-routing.module.ts
Styve Lioumba 4fb600b0cb configuration pocketbase terminé (#5)
# Conflicts:
#	.gitignore
2025-09-27 20:11:34 +02:00

14 lines
413 B
TypeScript

import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import {NotFoundComponent} from "@app/routes/not-found/not-found.component";
const routes: Routes = [
{path: '', component: NotFoundComponent, title: 'Page non trouvée'}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule]
})
export class NotFoundRoutingModule { }