Skip to content

Commit

Permalink
fix: fix type module
Browse files Browse the repository at this point in the history
  • Loading branch information
hi-ogawa committed Nov 12, 2024
1 parent b90cc92 commit 0cfbdfb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion viteroll/examples/mpa/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ <h1>Home</h1>
<li><a href="/about">About</a></li>
</ul>
<div id="root"></div>
<script src="./index.js"></script>
<script type="module" src="./index.js"></script>
</div>
</body>
</html>
3 changes: 1 addition & 2 deletions viteroll/examples/react/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
</head>
<body>
<div id="root"></div>
<script src="./src/main.tsx"></script>
<script type="module" src="./src/main.tsx"></script>
</body>
</html>

0 comments on commit 0cfbdfb

Please sign in to comment.