Adopt VS Code's 'asWebviewUri' API
See original GitHub issueHi, I maintain VS Code’s Webview API
Issue
Our telemetry suggests that your extension uses webviews and may be loading resources in these webviews using hardcoded vscode-resource:
URIs. These URIs have some important limitations and don’t work properly when VS Code is run in a browser. We are also making changes in the desktop version of VS Code that may cause these URIs to not work properly in future versions of VS Code.
While we are making our best effort to continue support existing webview extensions that use vscode-resource:
URIs on desktop versions of VS Code, we will not able to fully support all uses cases.
Fix
To ensure that your extension continues to work in as many environments as possible—including on web and remotely—please:
-
Switch to use the
Webview.asWebviewUri
function for loading resources. -
Switch to use the
Webview.cspSource
property in content security policies.
These APIs shipped around 2 years ago so they should be available in all modern versions of VS Code. You can find additional information about the issue here: https://github.com/microsoft/vscode/issues/97962
Let me know if you have any questions about this change
Issue Analytics
- State:
- Created 3 years ago
- Comments:6 (6 by maintainers)
Top GitHub Comments
Yeah it’s not in any code the runs for a user. WebPanelServer can’t use cspSource because it doesn’t create a webview. But the server react code can (or should be removed).
Created microsoft/vscode-python#12140 for removing the old code. And validating this one.