Skip to content

Commit

Permalink
Small fix on regex of WEBPACK_LOADER
Browse files Browse the repository at this point in the history
  • Loading branch information
fjsj committed Nov 29, 2023
1 parent e7d3c07 commit cbaafda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/project_name/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def base_dir_join(*args):
"CACHE": False, # on DEBUG should be False
"STATS_FILE": base_dir_join("../webpack-stats.json"),
"POLL_INTERVAL": 0.1,
"IGNORE": [".+\.hot-update.js", ".+\.map"],
"IGNORE": [r".+\.hot-update.js", r".+\.map"],
}
}

Expand Down

0 comments on commit cbaafda

Please sign in to comment.