We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf24931 commit d3b868dCopy full SHA for d3b868d
2 files changed
packages/devtools-launchpad/configs/development.json
@@ -5,6 +5,7 @@
5
"favicon": "assets/launchpad-favicon.png",
6
"theme": "light",
7
"dir": "ltr",
8
+ "defaultURL": "https://devtools-html.github.io/debugger-examples/",
9
"logging": {
10
"client": false,
11
"firefoxProxy": false,
packages/devtools-launchpad/src/server/launch.js
@@ -12,7 +12,7 @@ const {
12
13
function handleLaunchRequest(req, res) {
14
const browser = req.body.browser;
15
- const location = "https://devtools-html.github.io/debugger-examples/";
+ const location = getValue("defaultURL");
16
17
process.env.PATH += `:${__dirname}`;
18
if (browser == "Firefox") {
0 commit comments