Resolve issues
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/push/deploy Pipeline was successful

This commit is contained in:
2026-02-07 00:40:39 -03:00
parent 840c6cdeba
commit b66ab0602e
2 changed files with 6 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
Minimal nginx configuration for static site delivery
# Minimal nginx configuration for static site delivery
# Security headers are handled upstream by Traefik
user nginx;

View File

@@ -31,7 +31,11 @@ try {
base: buildDir,
html,
inline: { strategy: 'default' }, // preload in head + link at end of body (no inline JS, CSP-safe)
dimensions: [{ width: 1280, height: 720 }],
dimensions: [
{ width: 375, height: 667 }, // mobile (iPhone SE)
{ width: 768, height: 1024 }, // tablet
{ width: 1280, height: 720 }, // desktop
],
penthouse: { timeout: 30000 },
});
// Ensure _app asset paths stay absolute (critical may rewrite; host-based routing needs /_app/...)