diff --git a/.env b/.env new file mode 100644 index 0000000..6ce384e --- /dev/null +++ b/.env @@ -0,0 +1 @@ +BROWSER=none diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..5f7d326 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Chrome", + "type": "chrome", + "request": "launch", + "url": "http://localhost:3000", + "webRoot": "${workspaceRoot}/src", + "sourceMapPathOverrides": { + "webpack:///src/*": "${webRoot}/*" + } + } + ] +}