Remove uuid from webview resource uris

This is no longer be needed. We still serve the webview code itself from a unique subdomain

This also removes the need for `serviceWorkerFetchIgnoreSubdomain`
This commit is contained in:
Matt Bierner
2021-05-21 09:28:28 -07:00
parent 79dea51e79
commit 9847783f62
11 changed files with 26 additions and 56 deletions

View File

@@ -69,7 +69,7 @@ export class ExtHostWebview implements vscode.Webview {
public asWebviewUri(resource: vscode.Uri): vscode.Uri {
this.#hasCalledAsWebviewUri = true;
return asWebviewUri(this.#handle, resource, this.#initData.remote);
return asWebviewUri(resource, this.#initData.remote);
}
public get cspSource(): string {