We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0bf92f commit d087bafCopy full SHA for d087baf
.github/workflows/build.yml
@@ -84,7 +84,7 @@ jobs:
84
fi
85
86
# Test embedded assets
87
- if curl -f http://localhost:8888/assets/logo.svg > /dev/null 2>&1; then
+ if curl -f http://localhost:8888/static/logo.svg > /dev/null 2>&1; then
88
echo "✓ Embedded assets are working"
89
else
90
echo "✗ Embedded assets failed"
@@ -123,7 +123,7 @@ jobs:
123
124
125
try {
126
- $response = Invoke-WebRequest -Uri "http://localhost:8888/assets/logo.svg" -TimeoutSec 10
+ $response = Invoke-WebRequest -Uri "http://localhost:8888/static/logo.svg" -TimeoutSec 10
127
if ($response.StatusCode -eq 200) {
128
Write-Host "✓ Embedded assets are working"
129
} else {
0 commit comments