Skip to content

Commit

Permalink
fix live preivew when space in windows user path
Browse files Browse the repository at this point in the history
  • Loading branch information
abose committed Mar 21, 2023
1 parent c7a435e commit 191f6e7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ function open(target, opts) {
if (appArgs.length > 0) {
args = args.concat(appArgs);
}
cpOpts.shell = true;
} else {
if (opts.app) {
cmd = opts.app;
Expand Down Expand Up @@ -159,7 +160,7 @@ function _launchChromeWithRDP(url, enableRemoteDebugging) {
"--disable-default-apps",
"--allow-file-access-from-files",
"--remote-debugging-port=9222",
"--user-data-dir=%appdata%/lp",
`--user-data-dir="%appdata%/lp"`,
"--remote-allow-origins=*"
]});
}
Expand Down

0 comments on commit 191f6e7

Please sign in to comment.