mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 08:43:33 +00:00
Move web to apps/web and bitwarden_license/bit-web
This commit is contained in:
10
apps/web/src/app/wildcard-routing.module.ts
Normal file
10
apps/web/src/app/wildcard-routing.module.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import { NgModule } from "@angular/core";
|
||||
import { RouterModule, Routes } from "@angular/router";
|
||||
|
||||
const routes: Routes = [{ path: "**", redirectTo: "" }];
|
||||
|
||||
@NgModule({
|
||||
imports: [RouterModule.forChild(routes)],
|
||||
exports: [RouterModule],
|
||||
})
|
||||
export class WildcardRoutingModule {}
|
||||
Reference in New Issue
Block a user