When i include the js file in base.html <script src="static/assets/js/functions.js"></script> the CSS stops working entirely but when i remove the JS file or comment it out the CSS start loading and rendering well. I even tried putting the whole js code manually into the base.html but it still doesnt work i dont really know what to do right now.
The JS and CSS Files are located in a static folder in root directly and i'm sure there is not typo or anything not well arranged
{% static %}tag to generate the correct path, like you do for all your other JS and CSS?<script src="{% static 'assets/js/functions.js' %}"></script>