我正在使用Roots / Sage和Yarn设置WordPress入门主题。
一切正常,直到我运行yarn start
命令。
即使我已在config.json文件中将proxyUrl指定为http://localhost:8080,浏览器窗口也会打开并尝试运行localhost:8081
。
我将如何使浏览器同步正常工作,以便可以在本地处理WordPress主题?
我尝试将proxyUrl更改为http://192.168.64.2/wordpress/,这就是我如何通过XAMPP在本地访问WordPress主题的方法。
我可以通过localhost:8080
在浏览器中访问XAMPP,也可以输入IP地址。
但是,我只能使用我的IP地址访问我的WordPress网站,而不能访问localhost。
"publicPath": "/wp-content/themes/test",
"devUrl": "http://browsersync.test",
"proxyUrl": "http://localhost:8080",
"cacheBusting": "[name]_[hash:8]",
"watch": [
"app/**/*.php",
"config/**/*.php",
"resources/views/**/*.php"
]
yarn start
打开我的浏览器,尝试加载localhost:8080失败。
"publicPath": "/wp-content/themes/test",
"devUrl": "http://browsersync.test",
"proxyUrl": "http://192.168.64.2/wordpress/",
"cacheBusting": "[name]_[hash:8]",
"watch": [
"app/**/*.php",
"config/**/*.php",
"resources/views/**/*.php"
]
yarn start
遇到错误,没有任何反应。