Files
open-wc/packages/import-maps-generate/test/assets/injectToHtmlFile/utils.js
Thomas Allmer 9287189d00 feat: tool to generate an import map
Co-authored-by: Pascal Schilp <pascalschilp@gmail.com>
2019-06-23 15:09:51 +02:00

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>
`;