如何禁用内联 CSS 源地图

How to disable inline CSS source maps

我最近将我的网站发布为服务器呈现(带转换),我使用 https://gtmetrix.com 对其进行分析,其中一个警告是:"Minify HTML" 然后我注意到有大量 CSS 源映射作为内联数据 URL。

我不知道如何删除它们,我已经在 server.ts

中调用了 enableProdMode()

通过在 ./node_modules/@angular/cli/lib/config/schema.json 中搜索 JSON 架构找到答案,因为文档没有提到它:

"server": {
   "builder": "@angular-devkit/build-angular:server",
   "options": {
      "outputPath": "dist/server",
      "main": "src/main.server.ts",
      "tsConfig": "src/tsconfig.server.json",
      "sourceMap": false
   },
   ...