Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
he3lixxx committed Jun 5, 2023
1 parent c442c6b commit c2ee511
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion evap/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
import sys
from typing import Any, List, Tuple

from django.contrib.staticfiles.storage import ManifestStaticFilesStorage

BASE_DIR = os.path.dirname(os.path.realpath(__file__))


Expand Down Expand Up @@ -133,10 +135,11 @@
},
}

from django.contrib.staticfiles.storage import ManifestStaticFilesStorage

class ManifestStaticFilesStorageWithJsReplacement(ManifestStaticFilesStorage):
support_js_module_import_aggregation = True


STORAGES = {
"default": {
"BACKEND": "django.core.files.storage.FileSystemStorage",
Expand Down

0 comments on commit c2ee511

Please sign in to comment.