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 7, 2023
1 parent 8cbaae3 commit 6770254
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 9 deletions.
3 changes: 1 addition & 2 deletions frontend/src/app/app-routing.module.ts
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
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
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
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
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 6770254

Please sign in to comment.