Dhia Djobbi
Dhia Djobbi

Reputation: 1289

How can I stop Symfony from loading from cache?

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?

Upvotes: 0

Views: 66

Answers (1)

0stone0
0stone0

Reputation: 43972

It's composer that's using the caches files, disable it with --no-cache

composer --no-cache create-project symfony/website-skeleton project ~4

Upvotes: 2

Related Questions