Skip to content

Commit

Permalink
Fix webpack refrence paths
Browse files Browse the repository at this point in the history
  • Loading branch information
gadhagod committed Nov 6, 2021
1 parent 2f80eb1 commit 2c0665e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default (context: vscode.ExtensionContext) => {
}
);

initializationScreen.webview.html = readFileSync(vscode.Uri.file(join(context.extensionPath, "src", "webviews", "initializationScreen.html")).fsPath, "utf-8");
initializationScreen.webview.html = readFileSync(vscode.Uri.file(join(context.extensionPath, "webviews", "initializationScreen.html")).fsPath, "utf-8");

initializationScreen.webview.onDidReceiveMessage(
(res: {
Expand Down Expand Up @@ -77,4 +77,4 @@ export default (context: vscode.ExtensionContext) => {
undefined,
context.subscriptions
)
}
}
File renamed without changes.

0 comments on commit 2c0665e

Please sign in to comment.