Ajout du launch.json pour Firefox

This commit is contained in:
Anthony Dumas 2020-10-04 00:41:43 +02:00
parent dff3920bc6
commit 2200615d9d

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

@ -0,0 +1,16 @@
{
// Utilisez IntelliSense pour en savoir plus sur les attributs possibles.
// Pointez pour afficher la description des attributs existants.
// Pour plus d'informations, visitez : https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch localhost",
"type": "firefox",
"request": "launch",
"reAttach": true,
"url": "http://192.168.0.3:3000",
"webRoot": "${workspaceFolder}"
}
]
}