Skip to content

Commit

Permalink
Fix lint issues in storefront
Browse files Browse the repository at this point in the history
  • Loading branch information
hachokbloomreach committed Feb 8, 2024
1 parent a01db2f commit 7ad8751
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions brx-spartacus-storefront/src/app/app.server.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@
import { NgModule } from '@angular/core';
import { ServerModule, ServerTransferStateModule } from '@angular/platform-server';

import { provideServer } from '@spartacus/setup/ssr';
import { AppModule } from './app.module';
import { AppComponent } from './app.component';
import { provideServer } from '@spartacus/setup/ssr';

@NgModule({
imports: [AppModule, ServerModule, ServerTransferStateModule],
bootstrap: [AppComponent],
providers: [
...provideServer({
serverRequestOrigin: process.env['SERVER_REQUEST_ORIGIN'],
}),
serverRequestOrigin: process.env['SERVER_REQUEST_ORIGIN'],
}),
],
})
export class AppServerModule {}

0 comments on commit 7ad8751

Please sign in to comment.