-
Notifications
You must be signed in to change notification settings - Fork 405
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: resolve build issues for integration app
- Loading branch information
Showing
16 changed files
with
93 additions
and
303 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below. | ||
|
||
# For additional information regarding the format and rule options, please see: | ||
|
||
# https://github.com/browserslist/browserslist#queries | ||
|
||
# You can see what browsers were selected by your queries by running: | ||
# npx browserslist | ||
|
||
> 0.5% | ||
last 2 versions | ||
Firefox ESR | ||
not dead | ||
not IE 9-11 # For IE 9-11 support, remove 'not'. | ||
# npx browserslist | ||
|
||
last 2 Chrome versions |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,12 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { ServerModule, ServerTransferStateModule } from '@angular/platform-server'; | ||
import { ServerModule } from '@angular/platform-server'; | ||
import { NoopAnimationsModule } from '@angular/platform-browser/animations'; | ||
import { NgxsStoragePluginModule } from '@ngxs/storage-plugin'; | ||
|
||
import { AppComponent } from '@integration/app.component'; | ||
import { AppModule } from '@integration/app.module'; | ||
import { TodosState } from '@integration/store/todos/todos.state'; | ||
|
||
@NgModule({ | ||
imports: [ | ||
AppModule, | ||
ServerModule, | ||
NoopAnimationsModule, | ||
ServerTransferStateModule, | ||
NgxsStoragePluginModule.forRoot({ key: [TodosState] }) | ||
], | ||
imports: [AppModule, ServerModule, NoopAnimationsModule], | ||
bootstrap: [AppComponent] | ||
}) | ||
export class AppServerModule {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.