hotforfeature / wct-browserstack

WCT plugin that enables support for testing via Browserstack
1 stars 2 forks source link

Add documentation on removing local.log #7

Open hotforfeature opened 7 years ago

hotforfeature commented 7 years ago

Should add docs to the README to instruct devs on what to do if they want to stop browserstack-local from generating a local.log file. Config needs to include something like this:

module.exports = {
  plugins: {
    browserstack: {
      tunnel: {
        logFile: process.platform === 'win32' ? 'nul' : '/dev/null'
      }
    }
  }
};
daKmoR commented 7 years ago

this solution works nicely :)

thhxxx :)