2025-06-06 15:00:55 -07:00

8 lines
210 B
JavaScript

// This script will be run within the webview itself
// It cannot access the main VS Code APIs directly.
(function () {
const vscode = acquireVsCodeApi();
console.log("hello there from javascript");
})();