Explorar el Código

chore: changed webpack dev option that was causing issues

Kristian Vos hace 5 años
padre
commit
95aaf3987f
Se han modificado 1 ficheros con 1 adiciones y 4 borrados
  1. 1 4
      frontend/webpack.dev.js

+ 1 - 4
frontend/webpack.dev.js

@@ -12,9 +12,6 @@ module.exports = merge(common, {
 		historyApiFallback: true,
 		hot: true,
 		port: config.get("frontendPort"),
-		public: config.get("frontendDomain"),
-		proxy: {
-			"/sockjs-node": `http://localhost:${config.get("frontendPort")}`
-		}
+		disableHostCheck: true
 	}
 });