Added initial Astro starter kit with font setup, linting/formatting,SEO/Sitemap TailwindCSS, Alpine.js, and Dockerize

This commit is contained in:
Pooriya Karami
2026-04-15 22:32:15 +03:30
parent e3d9728906
commit da585a0c34
17 changed files with 11338 additions and 43 deletions

12
nginx.conf Normal file
View File

@@ -0,0 +1,12 @@
server {
listen 80;
root /usr/share/nginx/html;
location / {
try_files $uri $uri/ =404;
}
gzip on;
gzip_types text/css application/javascript image/svg+xml;
gzip_min_length 1024;
}