Remove hardcoded Replit banner script from HTML
Browse filesThe Replit dev banner script was hardcoded in index.html causing
CSP violations in production. Removed it completely as it's not
needed for Hugging Face Spaces deployment.
- client/index.html +0 -2
client/index.html
CHANGED
@@ -7,7 +7,5 @@
|
|
7 |
<body>
|
8 |
<div id="root"></div>
|
9 |
<script type="module" src="/src/main.tsx"></script>
|
10 |
-
<!-- This is a replit script which adds a banner on the top of the page when opened in development mode outside the replit environment -->
|
11 |
-
<script type="text/javascript" src="https://replit.com/public/js/replit-dev-banner.js"></script>
|
12 |
</body>
|
13 |
</html>
|
|
|
7 |
<body>
|
8 |
<div id="root"></div>
|
9 |
<script type="module" src="/src/main.tsx"></script>
|
|
|
|
|
10 |
</body>
|
11 |
</html>
|