Skip to content

Commit

Permalink
include Plausible analytics script after removing it by mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
perfectly-preserved-pie committed Jun 14, 2024
1 parent ae4a585 commit c6b4110
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,15 @@
import pandas as pd

# Create the Dash app
app = create_app(external_stylesheets, [])
app = create_app(
external_stylesheets = external_stylesheets,
external_scripts = { # Plausible analytics
'src': "https://plausible.automateordie.io/js/plausible.js",
'data-domain': "enemies.xenosaga.games",
'defer': True,
'type': 'application/javascript'
}
)

# Set the page title
app.title = "Xenosaga Enemy Database"
Expand Down

0 comments on commit c6b4110

Please sign in to comment.