Closed r-sugi closed 2 months ago
The latest updates on your projects. Learn more about Vercel for Git ↗︎
Name | Status | Preview | Comments | Updated (UTC) |
---|---|---|---|---|
nextjs-tdd-template_storybook | ✅ Ready (Inspect) | Visit Preview | 💬 Add feedback | Sep 16, 2024 6:17am |
⏱️ Estimated effort to review: 2 🔵🔵⚪⚪⚪ |
🧪 No relevant tests |
🔒 No security concerns identified |
⚡ Key issues to review Configuration Update 新しいデバッグ設定が追加されましたが、古い「Next.js: debug full stack」設定が削除されています。この変更が意図的かどうか確認し、必要に応じて古い設定を保持するか新しい設定に完全に移行するかを検討してください。 Script Command Update `debug`スクリプトが`next dev`を使用するように変更されました。この変更がプロジェクトの他の部分にどのような影響を与えるかを検討し、必要に応じてドキュメントやCI/CDパイプラインを更新してください。 |
Category | Suggestion | Score |
Enhancement |
___
** | 8 |
Possible issue |
___
** | 7 |
Debugger listening on ws://127.0.0.1:9230/8aca2113-781f-4055-8b97-c3e18439d917
のようにport:9230に対してlaunch.jsonを設定する
$ npm run debug
> nextjs-tdd-template@0.1.0 debug
> NODE_OPTIONS='--inspect' next dev
Starting inspector on 127.0.0.1:9229 failed: address already in use
Debugger listening on ws://127.0.0.1:9230/8aca2113-781f-4055-8b97-c3e18439d917
For help, see: https://nodejs.org/en/docs/inspector
the --inspect option was detected, the Next.js router server should be inspected at port 9230.
▲ Next.js 14.2.6
- Local: http://localhost:3000
- Environments: .env.local
- Experiments (use with caution):
· instrumentationHook
✓ Starting...
✓ Ready in 1721ms
○ Compiling /articles/[id] ...
✓ Compiled /articles/[id] in 2.5s (1031 modules)
debuggerk箇所で止まる
vscodeのbreakpointでも止まる
User description
209
PR Type
enhancement
Description
package.json
のdebug
スクリプトをnext dev
を使用するように変更しました。Changes walkthrough 📝
launch.json
Update VSCode launch configuration for Node.js debugging
.vscode/launch.json
package.json
Update debug script in package.json
app/package.json - Modified the `debug` script to use `next dev`.