im using symfony ad i read that the best practice to store image js and images is /web
<link rel="stylesheet" href="{{ asset('css/bootstrap.min.css') }}" />
if I want use assetic i found example like
{% javascripts '@AppBundle/Resources/public/js/*' output='js/compiled/main.js' %}
<script src="{{ asset_url }}"></script>
{% endjavascripts %}
where @AppBundle is logical name of Bundle
Logical File Names¶
When you want to reference a file from a bundle, use this notation: @BUNDLE_NAME/path/to/file; Symfony will resolve @BUNDLE_NAME to the real path to the bundle. For instance, the logical path @AppBundle/Controller/DefaultController.php would be converted to src/AppBundle/Controller/DefaultController.php, because Symfony knows the location of the AppBundle.
Where Do I Have To store my assets?