We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37b95c5 commit 9de65abCopy full SHA for 9de65ab
1 file changed
src/vs/workbench/services/extensions/browser/webWorkerExtensionHost.ts
@@ -73,11 +73,7 @@ export class WebWorkerExtensionHost extends Disposable implements IExtensionHost
73
}
74
75
private _wrapInIframe(): boolean {
76
- if (this._environmentService.options && typeof this._environmentService.options._wrapWebWorkerExtHostInIframe === 'boolean') {
77
- return this._environmentService.options._wrapWebWorkerExtHostInIframe;
78
- }
79
- // wrap in <iframe> by default
80
- return true;
+ return false;
81
82
83
public async start(): Promise<IMessagePassingProtocol> {
0 commit comments