Не совпадают lockalhost в gulp

Не совпадают lockalhost, что делать

 ---------------------------------------
       Local: http://localhost:3000
    External: http://172.19.187.224:3000
 ---------------------------------------
          UI: http://localhost:3001
 UI External: http://localhost:3001
 ---------------------------------------
[Browsersync] Serving files from: app/
[Browsersync] Couldn't open browser (if you are using BrowserSync in a headless environment, you might want to set the open option to false)



function browsersync() {
    browserSync.init({
        server: {
            baseDir: 'app/',
            middleware: bssi({ baseDir: 'app/', ext: '.html' })
        },
        options: {
            proxy: "http://localhost/mydir", //our PHP server
            port: 3002, // our new port
            open: true,
            watchTask: true
        },
        ghostMode: { clicks: false },
        notify: false,
        online: true,
        // tunnel: 'yousutename', // Attempt to use the URL https://yousutename.loca.lt
    })
}```

Ответы (0 шт):