Hello,
The new site is slow, checked page speed, around 40%.
First Contentful Paint 7.5 s
- I added the following config to nginx:
Gzip Compression
gzip on;
gzip_comp_level 5;
gzip_min_length 256;
gzip_proxied any;
gzip_types text/plain text/css application/json application/javascript application/xml;
gzip_vary on;
# Browser Caching
location ~* \.(jpg|jpeg|gif|png)$ {
expires 365d;
}
location ~* \.(css|js)$ {
expires 30d;
}running my own VPS, burst to 1GB
glup and serving of dist
Thanks for your help!
