Angular Universal SSR And Debug Setting In Webstorm
2135 단어 Angular
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
소스 맵
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.jsmodule.exports = {
devtool: 'source-map'
}
Reference
이 문제에 관하여(Angular Universal SSR And Debug Setting In Webstorm), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/kubocchi/items/27f3a1d22c96fbebb42d
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
npm debug setting. Script to run is
serve:ssr
How to debug setting in webstorm
소스 맵
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.jsmodule.exports = {
devtool: 'source-map'
}
Reference
이 문제에 관하여(Angular Universal SSR And Debug Setting In Webstorm), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/kubocchi/items/27f3a1d22c96fbebb42d
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
"server": {
"configurations": {
"production": {
"sourceMap": true
}
}
}
module.exports = {
devtool: 'source-map'
}
Reference
이 문제에 관하여(Angular Universal SSR And Debug Setting In Webstorm), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/kubocchi/items/27f3a1d22c96fbebb42d텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)