Skip to content

Commit b515b34

Browse files
authored
perf: optimize the built entry index.html file indentation (#3)
1 parent edb7e74 commit b515b34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dash_vite_plugin/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def create_default_index_html(self) -> None:
126126
Returns:
127127
None
128128
"""
129-
script_content = '\n'.join(
129+
script_content = '\n '.join(
130130
[f'<script type="module" src="{entry_js_path}"></script>' for entry_js_path in self.entry_js_paths]
131131
)
132132
index_html_content = f"""<!DOCTYPE html>

0 commit comments

Comments
 (0)