You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue you're experiencing with the playground view not being accessible in VSCode's WebView when running a Codespace from a browser suggests a potential cross-origin resource sharing (CORS) problem. Ensure that your localhost server is configured to allow requests from the domain where your VSCode instance is running, typically `localhost:8080` or a similar port used for development servers.
If you're using a simple HTTP server command like `python -m SimpleHTTPServer 8080`, it might be insufficient for more complex environments. Consider using something with CORS support, such as:
1. **Install `http-server`:**
npm install http-server -g
2. **Run the server with CORS enabled:**
http-server -p 8080 --cors
If you're facing further challenges, please provide details on your development environment and any error logs for more specific guidance.
Running a codespace from a browser, the localhost server fails to connect.
The text was updated successfully, but these errors were encountered: