@@ -81,7 +81,7 @@ Serving Assets in dev vs prod
81
81
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
82
82
83
83
In the ``dev `` environment, the URL ``/assets/images/duck-3c16d9220694c0e56d8648f25e6035e9.png ``
84
- is handled and returned by your Symfony app - but only if `` public/assets/ `` is empty (see below) .
84
+ is handled and returned by your Symfony app.
85
85
86
86
For the ``prod `` environment, before deploy, you should run:
87
87
@@ -95,8 +95,10 @@ See :ref:`Deployment <asset-mapper-deployment>` for more details.
95
95
96
96
..caution ::
97
97
98
- If you compiled your assets on your development machine, you need to delete them again,
99
- in order to make Symfony serve the current versions from ``assets/ `` again.
98
+ If you run the ``asset-map:compile `` command on your development machine,
99
+ you won't see any changes made to your assets when reloading the page.
100
+ To resolve this, delete the contents of the ``public/assets/ `` directory.
101
+ This will allow your Symfony application to serve those assets dynamically again.
100
102
101
103
..tip ::
102
104