Skip to content

Commit

Permalink
fix: Resolve path reolution for webpack stats in edxapp
Browse files Browse the repository at this point in the history
  • Loading branch information
blarghmatey committed Aug 23, 2023
1 parent bba7b4a commit c3160b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dockerfiles/openedx-edxapp/settings/cms/assets.not_py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ DATABASES = {


STATIC_ROOT = STATIC_ROOT_BASE
WEBPACK_LOADER["DEFAULT"]["STATS_FILE"] = STATIC_ROOT / "webpack-stats.json"
WEBPACK_LOADER["DEFAULT"]["STATS_FILE"] = path(STATIC_ROOT) / "webpack-stats.json"

derive_settings(__name__)

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/openedx-edxapp/settings/lms/assets.not_py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ DATABASES = {


STATIC_ROOT = STATIC_ROOT_BASE
WEBPACK_LOADER["DEFAULT"]["STATS_FILE"] = STATIC_ROOT / "webpack-stats.json"
WEBPACK_LOADER["DEFAULT"]["STATS_FILE"] = path(STATIC_ROOT) / "webpack-stats.json"

derive_settings(__name__)

Expand Down

0 comments on commit c3160b9

Please sign in to comment.