Symfony 4 : JS and CSS compiled with Webpack return 404
问题 I'm building a project with Symfony4 and VueJs, hosted by nginx server and run with Docker. My templates are OK but css and js files are in 404. Here's my nginx configuration : server { listen 80; listen [::]:80; server_name symfony.local; root /var/www/myproject/public; location / { try_files $uri /index.php$is_args$args; } location ~ ^/(index)\.php(/|$) { fastcgi_pass php:9000; fastcgi_split_path_info ^(.+\.php)(/.*)$; include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root