いくつかのwebpack開発サーバーの構成があります(構成全体の一部です)。
config.devServer = {
contentBase: './' + (options.publicFolder ? options.publicFolder : 'public'),
stats: {
modules: false,
cached: false,
colors: true,
chunk: false
},
proxy: [{
path: /^\/api\/(.*)/,
target: options.proxyApiTarget,
rewrite: rewriteUrl('/$1'),
changeOrigin: true
}]
};
function rewriteUrl(replacePath) {
return function (req, opt) { // gets called with request and proxy object
var queryIndex = req.url.indexOf('?');
var query = queryIndex >= 0 ? req.url.substr(queryIndex) : "";
req.url = req.path.replace(opt.path, replacePath) + query;
console.log("rewriting ", req.originalUrl, req.url);
};
}
次のコマンドでwebpackを実行します。
node node_modules/webpack-dev-server/bin/webpack-dev-server.js --host 0.0.0.0 --history-api-fallback --debug --inline --progress --config config/webpack.app.dev.js
私はhttp://localhost:8080
ローカルマシンでを使用して開発サーバーにアクセスできますが、モバイル、タブレット(同じWi-Fiネットワーク内にあります)からもサーバーにアクセスしたいと思っています。
どうすれば有効にできますか?ありがとう!
webpack-dev-server --host=0.0.0.0 --disable-host-check --useLocalIp