When I run my project in my localhost it works perfect. But when I deploy iti cannot find css files. That's why looks bad and doesn't get any style. How can I fix it?
settings.py
...
STATIC_URL = '/static/'
STATICFILES_DIRS = (os.path.join('static'),)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
...
Note: And I don't know if it is related but there is an error in console:
Refused to apply style from 'https://...ing.com/static/css/signup.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.