Angular 17 无法使用 chrome 工具进行调试

问题描述 投票:0回答:1

我在 angular.json 和 tsconfig.json 中给出了 sourceMap= true 。我在 chrome 工具中仍然看不到源图

angular angular17
1个回答
0
投票

这是我这边的一个错误。我使用 npm start 进行不同的配置。我错过了在该特定配置中添加 sourceMap=true 。

ng serve --configuration custom

 "custom": {
              "budgets": [
                {
                  "type": "initial",
                  "maximumWarning": "500kb",
                  "maximumError": "1mb"
                },
                {
                  "type": "anyComponentStyle",
                  "maximumWarning": "2kb",
                  "maximumError": "4kb"
                }
              ],
              "fileReplacements": [                         
               
                            ],
              "outputHashing": "all",
              "sourceMap": true
            }
© www.soinside.com 2019 - 2024. All rights reserved.