create-tsreact
Version:
TS/React Scaffolder using esbuild compiler/bundler
21 lines (19 loc) • 470 B
text/typescript
export default function genIndexHtml(name: string) {
const tpl = `
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="app.css">
<title>${name}</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="./app.js"></script>
</body>
</html>
`;
return tpl;
}