Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

ERRO AO TENTAR ABRIR O NAVEGADOR

Boa noite, ao digitar no cmd "npm run server" para abrir automaticamente o navegador, aparece o seguinte erro para mim.

C:\Desenvolvimento\Works\Typescript\alurabank> npm run server

> alurabank@1.0.0 server C:\Desenvolvimento\Works\Typescript\alurabank
> lite-server --baseDir=app/

Did not detect a `bs-config.json` or `bs-config.js` override file. Using lite-server defaults...
** browser-sync config **
{ injectChanges: false,
  files: [ './**/*.{html,htm,css,js}' ],
  watchOptions: { ignored: 'node_modules' },
  server: { baseDir: 'app/', middleware: [ [Function], [Function] ] } }
[Browsersync] Access URLs:
 -------------------------------------
       Local: http://localhost:3000
    External: http://192.168.0.10:3000
 -------------------------------------
          UI: http://localhost:3001
 UI External: http://localhost:3001
 -------------------------------------
[Browsersync] Serving files from: app/
[Browsersync] Watching files...
[Browsersync] Couldn't open browser (if you are using BrowserSync in a headless environment, you might want to set the open option to false)
1 resposta
solução!

Você está usando o servidor lite que, por sua vez, usa o BrowserSync. Ele permite que você substitua a configuração do servidor padrão usando o arquivo bs-config.json ou bs-config.js.

Basta criar um bs-config.json ou bs-config.js no diretório raiz do seu aplicativo e esse aviso desaparecerá. A menos que você precise modificar a configuração do servidor padrão, não há necessidade de criar uma.

Link da documentação se precisar https://github.com/johnpapa/lite-server#custom-configuration