From 61e112274968ed02307d4ce1278b40505e3a97d5 Mon Sep 17 00:00:00 2001 From: Adam Piontek Date: Fri, 2 Jul 2021 10:44:02 -0400 Subject: [PATCH] modified webpack browsersync config to work with local wp_dev docker setup --- webpack.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index 0a11582..293b4b4 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -133,12 +133,12 @@ if (process.env.SERVER) { config.plugins.push( new BrowserSyncPlugin( { - proxy: 'https://example.dev', + proxy: 'http://127.0.0.1:9764', files: [ '**/*.php', '**/*.scss' ], - port: 3000, + port: 9765, notify: false, } )