mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-08 12:57:46 +00:00
Adds "hydrogen" framework preset for Shopify Hydrogen framework to allow for zero-config usage of the `@vercel/hydrogen` Builder.
18 lines
641 B
HTML
18 lines
641 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/src/assets/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Hydrogen</title>
|
|
<link rel="stylesheet" href="/src/styles/index.css" />
|
|
<link rel="preconnect" href="https://cdn.shopify.com" />
|
|
<link rel="preconnect" href="https://shop.app/" />
|
|
<link rel="preconnect" href="https://hydrogen-preview.myshopify.com/" />
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/@shopify/hydrogen/entry-client"></script>
|
|
</body>
|
|
</html>
|