Has anyone been able to make Roots Sage 10 work on Windows?
The following builds on this thread on Sage forum.
I'm using Local WP with my website accessible through http://my-site.local/
. WSL terminal. I'm getting this error when visiting http://localhost:3000
:
Error occurred while trying to proxy: localhost:3000/
Bud.config.js
:
app
.setUrl('http://localhost:3000')
.setProxyUrl('http://my-site.local/')
.watch(['resources/views', 'app']);
Package.json
:
{
...
"browserslist": [
"extends @roots/browserslist-config"
],
"engines": {
"node": ">=16.0.0"
},
"type": "module",
"scripts": {
"dev": "bud dev",
"build": "bud build",
...
},
"devDependencies": {
"@roots/bud": "6.12.2",
"@roots/bud-tailwindcss": "6.12.2",
"@roots/sage": "6.12.2"
}
}
Why is it not working?