Can I use Live Server inside Vscode editor?

Viewed 1090

I know live server opens with a browser. But is it possible to open it inside editor? Like I split the editor window with two .js files.

3 Answers

Yup, you Open the pallet (Ctrl + Shift + P)

Select "Simple Browser: Preview" and then enter the web address

you Open the pallet (Ctrl + Shift + P)

Select "Simple Browser: Show" and then enter the web address

Maybe you should install a plugin named live preview instead of live server. click right in an html file. and then you can achive the live preview in vscode editor.

Here are two demo images. Hope my answer is helpful to you.

demo image01 demo image02

Related