Skip to content

Commit

Permalink
fix merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Niicck committed Feb 23, 2025
1 parent 5e57ecf commit 9828775
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions django_vite/core/asset_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ def _generate_css_files_of_asset(
for css_path in manifest_entry.css:
if css_path in already_processed_css:
continue
url = self._get_production_server_url(css_path)
url = self.get_production_server_url(css_path)
tags.append(tag_generator(url, attrs=attrs))
already_processed_css.add(css_path)

Expand Down Expand Up @@ -558,7 +558,7 @@ def generate_vite_legacy_polyfills(
scripts_attrs = {"crossorigin": "", **kwargs}
if nomodule:
scripts_attrs["nomodule"] = ""
url = self._get_production_server_url(polyfills_manifest_entry.file)
url = self.get_production_server_url(polyfills_manifest_entry.file)

return TagGenerator.script(
url,
Expand Down

0 comments on commit 9828775

Please sign in to comment.