zoukankan      html  css  js  c++  java
  • [Angular] Debug Angular apps in production without revealing source maps

    Source: https://blog.angularindepth.com/debug-angular-apps-in-production-without-revealing-source-maps-ab4a235edd85

    Build application with source map:

    "build": "ng build --prod --source-map",

    But now the source maps would be revealed in production. To hide them we simply create another folder in our dist and move the source maps to it.

    "postbuild": "mkdir dist/sourceMapInspector/sourceMaps; mv dist/sourceMapInspector/*.map dist/sourceMapInspector/sourceMaps"

    In production, we can find the source map by manully enter the source map url on server, then use 'Add source map' from Chrome dev tool to add source map in our production app.

    Then we can debug it as normal as in the developement env.

  • 相关阅读:
    个人博客
    个人博客
    5.4
    4.30
    4.29
    4.28
    4.27
    4.26
    4.25
    4.24
  • 原文地址:https://www.cnblogs.com/Answer1215/p/10235039.html
Copyright © 2011-2022 走看看