@@ -325,29 +325,29 @@ export class SetupViewProvider implements vscode.WebviewViewProvider {
325325 private _getHtmlForWebview ( webview : vscode . Webview ) {
326326 // Get the local path to main script run in the webview, then convert it to a uri we can use in the webview.
327327 const scriptUri = webview . asWebviewUri (
328- vscode . Uri . joinPath ( this . _extensionUri , 'src' , 'views ', 'scripts' , 'setupScript.js' )
328+ vscode . Uri . joinPath ( this . _extensionUri , 'media ' , 'scripts' , 'setupScript.js' )
329329 )
330330
331331 // Do the same for the stylesheet.
332332 const styleResetUri = webview . asWebviewUri (
333- vscode . Uri . joinPath ( this . _extensionUri , 'src' , 'views ', 'styles' , 'reset.css' )
333+ vscode . Uri . joinPath ( this . _extensionUri , 'media ' , 'styles' , 'reset.css' )
334334 )
335335 const styleVSCodeUri = webview . asWebviewUri (
336- vscode . Uri . joinPath ( this . _extensionUri , 'src' , 'views ', 'styles' , 'vscode.css' )
336+ vscode . Uri . joinPath ( this . _extensionUri , 'media ' , 'styles' , 'vscode.css' )
337337 )
338338 const styleMainUri = webview . asWebviewUri (
339- vscode . Uri . joinPath ( this . _extensionUri , 'src' , 'views ', 'styles' , 'main.css' )
339+ vscode . Uri . joinPath ( this . _extensionUri , 'media ' , 'styles' , 'main.css' )
340340 )
341341
342342 const unfinishedStepIconUri = webview . asWebviewUri (
343- vscode . Uri . joinPath ( this . _extensionUri , 'src' , 'views ', 'assets' , 'circle-large.svg' )
343+ vscode . Uri . joinPath ( this . _extensionUri , 'media ' , 'assets' , 'circle-large.svg' )
344344 )
345345
346346 const finishedStepIconUri = webview . asWebviewUri (
347- vscode . Uri . joinPath ( this . _extensionUri , 'src' , 'views ', 'assets' , 'pass-filled.svg' )
347+ vscode . Uri . joinPath ( this . _extensionUri , 'media ' , 'assets' , 'pass-filled.svg' )
348348 )
349349 const warningStepIconUri = webview . asWebviewUri (
350- vscode . Uri . joinPath ( this . _extensionUri , 'src' , 'views ', 'assets' , 'warning.svg' )
350+ vscode . Uri . joinPath ( this . _extensionUri , 'media ' , 'assets' , 'warning.svg' )
351351 )
352352
353353 // Use a nonce to only allow a specific script to be run.
0 commit comments