Tasmota component hinzugefuegt - CORSprobleme

This commit is contained in:
2025-03-12 11:16:31 +01:00
parent e21677311c
commit 7f818f5463
12 changed files with 749 additions and 267 deletions
+3 -1
View File
@@ -1,10 +1,12 @@
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { LinksComponent } from './links/links.component';
import { TasmotaControlComponent } from './tasmota-control/tasmota-control.component';
const routes: Routes = [
{ path: '', redirectTo: '/list-links', pathMatch: 'full'},
{ path: 'list-links', component:LinksComponent }
{ path: 'list-links', component:LinksComponent },
{ path: 'steckdosen', component:TasmotaControlComponent}
];
@NgModule({