Enabled get all products with sdk. but needs normalizing

Added vs code debug script
This commit is contained in:
GunaTrika
2021-07-28 15:53:54 +05:30
parent c5d92d46ad
commit 7510cb03a8
2 changed files with 30 additions and 0 deletions

22
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,22 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Next: Node",
"runtimeExecutable": "${workspaceFolder}/node_modules/next/dist/bin/next",
"env": {
"NODE_OPTIONS": "--inspect"
},
"port": 9229,
"console": "integratedTerminal"
}
],
"compounds": [
{
"name": "Next: Full",
"configurations": ["Next: Node"]
}
]
}