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 87c9a3e commit 4d22284Copy full SHA for 4d22284
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@solarspace-dev/vscode-web",
3
- "version": "1.92.0-1",
+ "version": "1.92.0-2",
4
"description": "Visual Studio Code for browser",
5
"files": [
6
"dist"
workbench.ts
@@ -24,7 +24,8 @@ declare const window: any;
24
config = tempConfig;
25
}
26
27
- const workspace = { folderUri: URI.parse(document.location.href).with({ scheme: "memfs" }) };
+ const location = document.location.href;
28
+ const workspace = { folderUri: URI.parse(`tmp:///?location=${encodeURIComponent(location)}`) };
29
const workspaceProvider: IWorkspaceProvider = {
30
workspace,
31
open: async (
0 commit comments