Files
react-editor-shopify/index.html
Rami Bitar 3636724450 Remove Tailwind CDN script from index.html
Vite already compiles Tailwind via globals.css, so the runtime CDN
script duplicated styles and slowed first paint.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-10 17:04:51 -04:00

21 lines
521 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Shopify Storefront</title>
<link
rel="stylesheet"
href="https://esm.sh/@reacteditor/core@0.0.10/dist/index.css"
/>
<link
rel="stylesheet"
href="https://esm.sh/@reacteditor/plugin-ai@0.0.3/styles.css"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>