Create .streamlit/config.toml
Browse files- .streamlit/config.toml +13 -0
.streamlit/config.toml
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[browser]
|
| 2 |
+
gatherUsageStats = false
|
| 3 |
+
script = """
|
| 4 |
+
<!-- Google tag (gtag.js) -->
|
| 5 |
+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-8XP3DZTE4B"></script>
|
| 6 |
+
<script>
|
| 7 |
+
window.dataLayer = window.dataLayer || [];
|
| 8 |
+
function gtag( ){dataLayer.push(arguments);}
|
| 9 |
+
gtag('js', new Date());
|
| 10 |
+
|
| 11 |
+
gtag('config', 'G-8XP3DZTE4B');
|
| 12 |
+
</script>
|
| 13 |
+
"""
|