Skip to content

Commit

Permalink
c3
Browse files Browse the repository at this point in the history
  • Loading branch information
Mehdi Imam authored and Mehdi Imam committed Jul 14, 2020
1 parent d65d54f commit 4a65dbd
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 9 deletions.
32 changes: 24 additions & 8 deletions AppKubernetes/ClientApp/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.app.json",
"assets": ["src/assets"],
"assets": [
"src/assets"
],
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"src/styles.css"
Expand Down Expand Up @@ -78,16 +80,25 @@
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.spec.json",
"karmaConfig": "src/karma.conf.js",
"styles": ["src/styles.css"],
"styles": [
"src/styles.css"
],
"scripts": [],
"assets": ["src/assets"]
"assets": [
"src/assets"
]
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": ["src/tsconfig.app.json", "src/tsconfig.spec.json"],
"exclude": ["**/node_modules/**"]
"tsConfig": [
"src/tsconfig.app.json",
"src/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
}
},
"server": {
Expand Down Expand Up @@ -131,11 +142,16 @@
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": "e2e/tsconfig.e2e.json",
"exclude": ["**/node_modules/**"]
"exclude": [
"**/node_modules/**"
]
}
}
}
}
},
"defaultProject": "AppKubernetes"
}
"defaultProject": "AppKubernetes",
"cli": {
"analytics": false
}
}
5 changes: 5 additions & 0 deletions AppKubernetes/ClientApp/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions AppKubernetes/ClientApp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"@angular/platform-browser-dynamic": "10.0.3",
"@angular/platform-server": "10.0.3",
"@angular/router": "10.0.3",
"@nguniversal/module-map-ngfactory-loader": "^8.2.6",
"aspnet-prerendering": "^3.0.1",
"bootstrap": "^4.3.1",
"core-js": "^3.3.3",
Expand Down
1 change: 0 additions & 1 deletion AppKubernetes/ClientApp/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,3 @@ if (environment.production) {
platformBrowserDynamic(providers).bootstrapModule(AppModule)
.catch(err => console.log(err));

export { renderModule, renderModuleFactory } from '@angular/platform-server';

0 comments on commit 4a65dbd

Please sign in to comment.