I am starting a Symfony 3 project.
My CSS files are in /web/css.
The CSS files need to get fonts in a font folder at the same level than the CSS folder ( = /web/fonts)
I'm using assetic for CSS and JS files.
When I'm in prod, everything is OK. The CSS files looks in /MyApp/web/fonts/somefont.ttf and find the font.
But under app_dev.php, the file looks for /MyApp/web/app_dev.php/fonts/somefont.ttf which doesn't work.
How can I manage that ? Do I have to do something with assetic ?