We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cc8908 commit b0f5a86Copy full SHA for b0f5a86
netlify.toml
@@ -1,6 +1,30 @@
1
[build]
2
command = "npm run build"
3
+ publish = "dist"
4
5
[build.environment]
6
NODE_VERSION = "22.14.0"
7
8
+# Upewnij się, że _astro folder jest dostępny dla statycznych assetów
9
+[[headers]]
10
+ for = "/_astro/*"
11
+ [headers.values]
12
+ Cache-Control = "public, max-age=31536000, immutable"
13
+
14
+# Upewnij się, że pliki CSS mają prawidłowy MIME type
15
16
+ for = "*.css"
17
18
+ Content-Type = "text/css"
19
20
21
+ for = "*.js"
22
23
+ Content-Type = "text/javascript"
24
25
+# Zapobiegaj redirectom dla assetów
26
+[[redirects]]
27
+ from = "/_astro/*"
28
+ to = "/_astro/:splat"
29
+ status = 200
30
+ force = false
0 commit comments