What will happen if sourcemap is set as false in Angular

后端 未结 3 984
故里飘歌
故里飘歌 2021-02-14 03:33

I\'m new in Angular. I saw sourcemap in tsconfig.json and by default it is \"sourceMap\": true. I had few doubts and found this link usefu

3条回答
  •  情深已故
    2021-02-14 04:19

    sourceMap is just for development experience (debug) and normally you don't need these files in production build and if you check angular.json you will found that it 's set to false for you

      "configurations": {
        "production": {
          "fileReplacements": [
            {
              "replace": "src/environments/environment.ts",
              "with": "src/environments/environment.prod.ts"
            }
          ],
          "optimization": true,
          "outputHashing": "all",
          "sourceMap": false,  <----
          "extractCss": true,
          "namedChunks": false,
          "aot": true,
          "extractLicenses": true,
          "vendorChunk": false,
          "buildOptimizer": true
        }
    

提交回复
热议问题