When I create a new project using:
composer create-project symfony/website-skeleton project ~4
Symfony automatically install everything like yarn, marker, webpack, profiler (loading from cache )
How can I stop Symfony from loading cache?
It's composer that's using the caches files, disable it with --no-cache
composer --no-cache create-project symfony/website-skeleton project ~4