-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #55 from PtPrashantTripathi/frontend
Frontend
- Loading branch information
Showing
32 changed files
with
6,594 additions
and
5,790 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"type": "msedge", | ||
"name": "Launch Microsoft Edge", | ||
"request": "launch", | ||
"runtimeArgs": [ | ||
"--remote-debugging-port=9222" | ||
], | ||
"url": "C:\\Users\\prashant.tripathi\\Code\\PortfolioTracker\\FRONTEND\\index.html", // Provide your project's url to finish configuring | ||
"presentation": { | ||
"hidden": true | ||
} | ||
}, | ||
{ | ||
"type": "msedge", | ||
"name": "Launch Microsoft Edge in headless mode", | ||
"request": "launch", | ||
"runtimeArgs": [ | ||
"--headless", | ||
"--remote-debugging-port=9222" | ||
], | ||
"url": "C:\\Users\\prashant.tripathi\\Code\\PortfolioTracker\\FRONTEND\\index.html", // Provide your project's url to finish configuring | ||
"presentation": { | ||
"hidden": true | ||
} | ||
}, | ||
{ | ||
"type": "vscode-edge-devtools.debug", | ||
"name": "Open Edge DevTools", | ||
"request": "attach", | ||
"url": "C:\\Users\\prashant.tripathi\\Code\\PortfolioTracker\\FRONTEND\\index.html", // Provide your project's url to finish configuring | ||
"presentation": { | ||
"hidden": true | ||
} | ||
} | ||
], | ||
"compounds": [ | ||
{ | ||
"name": "Launch Edge Headless and attach DevTools", | ||
"configurations": [ | ||
"Launch Microsoft Edge in headless mode", | ||
"Open Edge DevTools" | ||
] | ||
}, | ||
{ | ||
"name": "Launch Edge and attach DevTools", | ||
"configurations": [ | ||
"Launch Microsoft Edge", | ||
"Open Edge DevTools" | ||
] | ||
} | ||
] | ||
} |
Oops, something went wrong.