0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Angular Universal SSR And Debug Setting In Webstorm

Posted at

Introduction

When SSR in angular by angular universal, debug setting is not set for typescript by default. To use debugger of webstorm, you should change some config files of your project.

Webstorm Deubber setting

npm debug setting. Script to run is serve:ssr

How to debug setting in webstorm

Source Map

Add source map setting to angular.json, and webpack.server.config.js

angular.json

Change angular.json sourceMap: false to sourceMap: true

angular.json
"server": {
   "configurations": {
      "production": {
         "sourceMap": true
      }
   }  
}

webpack.server.config.js

Add devtool: 'source-map'

webpack.server.config.js
module.exports = {
   devtool: 'source-map'
}
Screen Shot 2020-01-12 at 19.46.18.png
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?