From addc65d32427d4d9997d9c389f64c1b7003d6945 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Fri, 5 Oct 2018 23:32:08 -0500 Subject: [PATCH] OS X debugging support --- config/webpack.config.dev.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/webpack.config.dev.js b/config/webpack.config.dev.js index eb7a09c..d25c848 100644 --- a/config/webpack.config.dev.js +++ b/config/webpack.config.dev.js @@ -226,7 +226,7 @@ module.exports = { port: 3000, openOptions: { app: [ - process.platform === 'win32' ? 'chrome' : 'google-chrome-stable', + process.platform === 'win32' ? 'chrome' : process.platform === 'darwin' ? '/Applications/Google Chrome.app/Contents/MacOS/Google Chrome' : 'google-chrome-stable', '--disable-web-security', '--user-data-dir=' + path.resolve(chromeUserDataDir) ]