Update App css imports

This commit is contained in:
Rami Bitar
2026-05-03 17:13:19 -04:00
parent 6cbbccf3bf
commit c9b64e78d8
2 changed files with 8 additions and 2 deletions

View File

@@ -5,6 +5,14 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>React Editor — Shopify Demo</title> <title>React Editor — Shopify Demo</title>
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
<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> </head>
<body> <body>
<div id="root"></div> <div id="root"></div>

View File

@@ -6,8 +6,6 @@ import {
} from "@reacteditor/core"; } from "@reacteditor/core";
import createTailwindCdnPlugin from "@reacteditor/plugin-tailwind-cdn"; import createTailwindCdnPlugin from "@reacteditor/plugin-tailwind-cdn";
import { aiPlugin } from "@reacteditor/plugin-ai"; import { aiPlugin } from "@reacteditor/plugin-ai";
import "@reacteditor/core/dist/index.css";
import "@reacteditor/plugin-ai/styles.css";
import { createConfig } from "@/editor/config"; import { createConfig } from "@/editor/config";
import { ShopifyProvider } from "@/editor/contexts/shopify-context"; import { ShopifyProvider } from "@/editor/contexts/shopify-context";
import schemaJson from "../app.schema.json"; import schemaJson from "../app.schema.json";