Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. "configurations": {
  2. "production": {
  3. "fileReplacements": [
  4. {
  5. "replace": "src/environments/environment.ts",
  6. "with": "src/environments/environment.prod.ts"
  7. }
  8. ],
  9. "optimization": true,
  10. "outputHashing": "all",
  11. "sourceMap": false,
  12. "extractCss": true,
  13. "namedChunks": false,
  14. "aot": true,
  15. "extractLicenses": true,
  16. "vendorChunk": false,
  17. "buildOptimizer": true,
  18. "budgets": [
  19. {
  20. "type": "initial",
  21. "maximumWarning": "2mb",
  22. "maximumError": "5mb"
  23. }
  24. ]
  25. },
  26. "test": {
  27. "fileReplacements": [
  28. {
  29. "replace": "src/environments/environment.ts",
  30. "with": "src/environments/environment.test.ts"
  31. }
  32. ]
  33. }
  34. }
  35. },
  36.  
  37. ...
  38.  
  39. "configurations": {
  40. "production": {
  41. "browserTarget": "frontend:build:production"
  42. },
  43. "test": {
  44. "browserTarget": "frontend:build:test"
  45. }
  46. }
  47. },
  48.  
  49. export const environment = {
  50. production: false,
  51. };
  52.  
  53. export const environment = {
  54. production: false,
  55. test: true,
  56. url: 'google.com'
  57. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement