mirror of
https://github.com/jlengrand/open-wc.git
synced 2026-03-10 08:31:19 +00:00
27 lines
350 B
JavaScript
27 lines
350 B
JavaScript
export const indexHtml = `<html>
|
|
<head>
|
|
<title>foo</title>
|
|
</head>
|
|
<body>
|
|
bar
|
|
</body>
|
|
</html>
|
|
`;
|
|
|
|
export const indexHtmlWithImportMap = `<html>
|
|
<head>
|
|
<title>foo</title>
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"a": "a"
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
bar
|
|
</body>
|
|
</html>
|
|
`;
|