I created a new folder in Windows 10 and opened it in Visual Studio Code. After creating 'index.html' at the root, I ran the following commands:
npm init
npm install --save-dev lite-server
I added the following, under scripts, in package.json:
"start": "lite-server"
After that, when I ran 'npm start' it opened a new tab in my browser (http://localhost:3000) but my 'index.html' is not loaded (instead I saw 'no internet'). No other process was running on port 3000.
Could you help me load 'index.html' by running 'npm start' please?