Cache Control for React App with Nginx
The cache issue which typical React App confronts, can be solved by Nginx configuration
Common Deployment
After the app is built, we can just use Nginx to point to the static files
server {
listen 80;
root /PATH/TO/APP/build;
try_files $uri $u...
chanvin.hashnode.dev2 min read