diff --git a/angular.json b/angular.json index 1b414fd..305d9d9 100644 --- a/angular.json +++ b/angular.json @@ -111,5 +111,8 @@ } } } + }, + "cli": { + "analytics": false } } \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 483f83f..69b0b11 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "code-chef", - "version": "1.1.0", + "version": "1.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "code-chef", - "version": "1.1.0", + "version": "1.2.0", "dependencies": { "@angular/animations": "^18.2.0", "@angular/common": "^18.2.0", diff --git a/src/app/app.routes.ts b/src/app/app.routes.ts index 02c2b02..c76467b 100644 --- a/src/app/app.routes.ts +++ b/src/app/app.routes.ts @@ -6,9 +6,7 @@ import { Md2htmlComponent } from './md2html/md2html.component'; import { SerializedToolComponent } from './serialized-tool/serialized-tool.component'; export const routes: Routes = [ - { path: '', redirectTo: "home", pathMatch: "full" }, - - { path: 'home', title: "Home • CodeChef", component: HomeComponent }, + { path: '', title: "CodeChef", component: HomeComponent }, { path: 'cs2ts', title: "C# to TS • CodeChef", component: Cs2tsComponent }, { path: 'md2html', title: "MD to HTML • CodeChef", component: Md2htmlComponent }, { path: 'serialized', title: "Serialized Tool • CodeChef", component: SerializedToolComponent },