Skip to content

Commit

Permalink
fix static file dirs path
Browse files Browse the repository at this point in the history
  • Loading branch information
hamzaimran08 authored Oct 30, 2023
1 parent b7874a4 commit 22a83eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scaleout/stackn/templates/studio-settings-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ data:
STATIC_URL = '/static/'
#Use in production and together with Nginx
STATIC_ROOT = os.path.join(BASE_DIR, 'static/')
STATICFILES_DIRS = os.path.join(BASE_DIR, 'static/')
STATICFILES_DIRS = os.path.join(BASE_DIR, 'static')
TEMPLATE_LOADERS = (
Expand Down

0 comments on commit 22a83eb

Please sign in to comment.