I am using the BrowserSync task from Grunt, this task runs my local project at the address "localhost: 3000".

It works great. But when I use the external url ( http://192.168.1.129 { 000 ) in my smartphone, I get the following error from my Chrome browser on Android:
ERR_ADDRESS_UNREACHABLE
I do not understand this problem. You can see my Gruntfile.js here:
//Gruntfile.js module.exports = function (grunt) { grunt.initConfig({ //Watch task config watch: { }, //BrowserSync browserSync: { default_options: { bsFiles: { src: [ "css/*.css", "js/*.js", "*.html" ] }, options: { watchTask: true, proxy: "tutorialmaterialize.dev" } } } }); grunt.loadNpmTasks('grunt-contrib-watch'); grunt.loadNpmTasks('grunt-browser-sync'); //Default task grunt.registerTask('default', ['browserSync', 'watch']); };
how can i fix this ?, thank you very much.
javascript android google-chrome gruntjs browser-sync
Funny frontend
source share