配置主机并使用 webpack 打开
Config host and open with webpack
我的问题很基础。我在我的 webpack 配置中这样设置开发服务器:
devServer: {
host: '0.0.0.0',
port: 4002,
overlay: true,
open: true
}
我添加 host: '0.0.0.0' 以便通过我的 IP 地址访问服务器。
它适用于
localhost:4002
或
< IP_ADDRESS >:4002
问题在于,使用 open: true 它会在浏览器中打开主机名为:
的页面
0.0.0.0:4002
而且它不起作用。
我用 openPage option 修复了它,它指定了我要打开的 URL。 open 选项只是尝试使用 host 选项推断出您想要的 URL。
devServer: {
host: '0.0.0.0',
port: 4002,
overlay: true,
open: true,
openPage: 'http://localhost:4002'
}
我的问题很基础。我在我的 webpack 配置中这样设置开发服务器:
devServer: {
host: '0.0.0.0',
port: 4002,
overlay: true,
open: true
}
我添加 host: '0.0.0.0' 以便通过我的 IP 地址访问服务器。 它适用于
localhost:4002
或
< IP_ADDRESS >:4002
问题在于,使用 open: true 它会在浏览器中打开主机名为:
的页面0.0.0.0:4002
而且它不起作用。
我用 openPage option 修复了它,它指定了我要打开的 URL。 open 选项只是尝试使用 host 选项推断出您想要的 URL。
devServer: {
host: '0.0.0.0',
port: 4002,
overlay: true,
open: true,
openPage: 'http://localhost:4002'
}