Skip to content

Commit

Permalink
fix: add resolved asset
Browse files Browse the repository at this point in the history
  • Loading branch information
12rambau committed Jan 8, 2024
1 parent dcc126a commit 22e4037
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sphinxcontrib/icon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ def setup(app: Sphinx) -> Dict[str, Any]:
font_handler = Fontawesome()

# install html related files
app.add_css_file(str(font_handler.css_file))
app.add_js_file(str(font_handler.js_file))
app.add_css_file(str(font_handler.css_file.resolve()))
app.add_js_file(str(font_handler.js_file.resolve()))

# install latex files
app.add_latex_package("fontspec")
Expand Down

0 comments on commit 22e4037

Please sign in to comment.