index.html

Download
html 17 lines 467 B
 1<!DOCTYPE html>
 2<html lang="ko">
 3<head>
 4    <meta charset="UTF-8">
 5    <meta name="viewport" content="width=device-width, initial-scale=1.0">
 6    <title>Vite ν”„λ‘œμ νŠΈ 예제</title>
 7</head>
 8<body>
 9    <div id="app">
10        <h1>Vite ν”„λ‘œμ νŠΈ</h1>
11        <p>λΉ λ₯Έ 개발 μ„œλ²„μ™€ μ΅œμ ν™”λœ λΉŒλ“œλ₯Ό μ œκ³΅ν•©λ‹ˆλ‹€.</p>
12        <button id="counter">μΉ΄μš΄ν„°: 0</button>
13    </div>
14    <script type="module" src="/src/main.js"></script>
15</body>
16</html>