在Angular中更改sourceMappingURL

时间:2018-12-07 12:53:55

标签: angular

我正在尝试为我的项目(Angular 7)实现私有源地图。我在angular.json中添加了以下内容:

    "configurations": {
        "production": {
          "optimization": true,
          "outputHashing": "all",
          "sourceMap": true,
          "extractCss": true,

因此源映射可以正确生成,并且在捆绑的js文件的末尾,我有:

//# sourceMappingURL=main.4de2b7c5e78b2fdbebda.js.map

但是我想将源地图托管在“内部”服务器上,因此完整地址应类似于:

//# sourceMappingURL=https://myinternal.server.com/main.4de2b7c5e78b2fdbebda.js.map

反正我能做到吗?

0 个答案:

没有答案