How to enable CSS sourcemaps for Angular 6 application?

前端 未结 1 1174
一生所求
一生所求 2021-02-04 16:01

How do I enable sourcemaps for CSS files in my Angular 6 application?

I\'m defining my styles source code in SCSS files, which are later compiled to CSS by Angular CLI.

相关标签:
1条回答
  • 2021-02-04 16:17

    From https://github.com/angular/angular-cli/issues/9099#issuecomment-388710635

    1) modify angular.json to add --extract-css, in 6.0 this argument is removed from ng serve

     "build": {
          "builder": "@angular-devkit/build-angular:browser",
          "options": {
           ---
          },
          "configurations": {
            "production": {
              ---
            },
            "serve": {
              "extractCss": true,
               ---
            }
          }
        },
    

    2) Then change serve->options->browserTarget->project-name:build to project-name:build:serve

    "serve": {
          "builder": "@angular-devkit/build-angular:dev-server",
          "options": {
            "open": true,
            "browserTarget": "<project-name>:build:serve"
          },
          "configurations": {
            "production": {
              ---
            }
          }
        }
    

    3) run ng serve --source-map

    0 讨论(0)
提交回复
热议问题