Skip to content

Commit

Permalink
Remove unsupported options
Browse files Browse the repository at this point in the history
  • Loading branch information
Yamaguchi committed Jul 9, 2023
1 parent e0ccb9c commit c933098
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 12 deletions.
4 changes: 1 addition & 3 deletions frontend/angular.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"defaultProject": "app",
"newProjectRoot": "projects",
"projects": {
"app": {
Expand Down Expand Up @@ -52,7 +51,6 @@
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
Expand Down Expand Up @@ -173,7 +171,7 @@
}
},
"cli": {
"defaultCollection": "@angular-eslint/schematics",
"schematicCollections": ["@angular-eslint/schematics"],
"analytics": false
},
"schematics": {
Expand Down
3 changes: 1 addition & 2 deletions frontend/src/app/app-routing.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,7 @@ const routes: Routes = [
@NgModule({
imports: [
RouterModule.forRoot(routes, {
preloadingStrategy: PreloadAllModules,
relativeLinkResolution: 'legacy'
preloadingStrategy: PreloadAllModules
})
],
exports: [RouterModule]
Expand Down
1 change: 0 additions & 1 deletion frontend/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import { ConfigService } from './config.service';

@NgModule({
declarations: [AppComponent, FooterComponent],
entryComponents: [],
imports: [
BrowserModule,
IonicModule.forRoot(),
Expand Down
3 changes: 1 addition & 2 deletions frontend/src/app/block/block.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import { BlockRawdataPageModule } from '../block-rawdata/block-rawdata.module';
SharedPipeModule,
BlockRawdataPageModule
],
declarations: [BlockPage],
entryComponents: [BlockRawdataPage]
declarations: [BlockPage]
})
export class BlockPageModule {}
3 changes: 1 addition & 2 deletions frontend/src/app/color/color.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import { NgxPaginationModule } from 'ngx-pagination';
NgxPaginationModule,
SharedPipeModule
],
declarations: [ColorPage],
entryComponents: []
declarations: [ColorPage]
})
export class ColorPageModule {}
3 changes: 1 addition & 2 deletions frontend/src/app/transaction/transaction.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import { TransactionRawdataPageModule } from '../transaction-rawdata/transaction
TransactionPageRoutingModule,
TransactionRawdataPageModule
],
declarations: [TransactionPage],
entryComponents: [TransactionRawdataPage]
declarations: [TransactionPage]
})
export class TransactionPageModule {}

0 comments on commit c933098

Please sign in to comment.