Reputation: 11
I want to use browser sync sublime text in Microsoft edge, what's the key? I used "edge","IE" both not worked
Upvotes: 1
Views: 824
Reputation: 12999
I test with msedge
and it can launch Edge browser.
browser_sync_launch.js file:
var bs = require('browser-sync').create('ST3');
args = process.argv.slice(2);
bs.init({
server:args[0],
files:args[1].split(','),
index:args[2],
startPath:args[2],
logLevel:"silent",
browser:"msedge"
});
Upvotes: 2