Skip to content

Instantly share code, notes, and snippets.

View tomdohnal's full-sized avatar

Tom Dohnal tomdohnal

View GitHub Profile
@tomdohnal
tomdohnal / launch.json
Created September 15, 2024 18:27
Debugging Next.js in VSCode (with Webpack) – launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "Next.js: debug server-side",
"port": 9230,
"request": "attach",
"skipFiles": [
"<node_internals>/**"
],
@tomdohnal
tomdohnal / launch.json
Last active January 24, 2025 04:47
Debugging Next.js in VSCode (with Turbopack) – launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "Next.js: debug server-side",
"port": 9230,
"request": "attach",
"skipFiles": [
"<node_internals>/**"
],