Fix STATIC_ROOT

This commit is contained in:
PCoder 2021-09-02 07:03:30 +05:30
parent 749268b67a
commit 270a032d36
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ STATIC_ROOT = ''
PROJECT_ROOT = os.path.abspath(os.path.dirname(__name__))
STATIC_ROOT = os.path.join(PROJECT_ROOT, 'app/app/static')
STATIC_ROOT = os.path.join(PROJECT_ROOT, 'static')
STATIC_URL = '/static/'