Skip to content

Commit

Permalink
c6b4110 fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
perfectly-preserved-pie committed Jun 14, 2024
1 parent c6b4110 commit cf94e16
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@
# Create the Dash app
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'
}
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
Expand Down

0 comments on commit cf94e16

Please sign in to comment.