# The above code is omitted
# Root static directory
STATIC_URL = '/static/'
# Solve the problem that static resources cannot be found
STATICFILES_DIRS = [
os.path.join(BASE_DIR, 'static').replace('\\', '/'),
os.path.join(BASE_DIR, 'app/static').replace('\\', '/'),
]
# The following code is omitted
# The above code is omitted
# Root static directory
STATIC_URL = '/static/'
# Solve the problem that static resources cannot be found
# STATICFILES_DIRS = [
# os.path.join(BASE_DIR, 'static').replace('\\', '/'),
# os.path.join(BASE_DIR, 'app/static').replace('\\', '/'),
#]
# The following code is omitted