i just deployed my symfony 4 app but the problem that i'm facing is the app do not loads images,routes, css files and js files. i did install assets. here's what i get
Failed to load resource: the server responded with a status of 404 (Not Found)
my css file
<link rel="stylesheet" type="text/css" href="{{ asset('assets/main/styles/responsive.css') }}">
<link rel="stylesheet" type="text/css" href="{{ asset('assets/css/main.css') }}">
and my js
<script src="{{ asset('assets/main/js/main.js') }}"></script>
<script src="{{ asset('assets/main/js/elements.js') }}"></script>
am i messing something i've searched everywhere but no result.