Fix index.html

This commit is contained in:
Макс Овсяников 2022-11-11 17:50:55 +03:00
parent 1936c4f9a8
commit 585387c415
2 changed files with 4 additions and 4 deletions

View File

@ -5,13 +5,13 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cg-Select</title> <title>Cg-Select</title>
<link href="./style/main.scss" rel="stylesheet" /> <link href="./src/style/main.scss" rel="stylesheet" />
</head> </head>
<body> <body>
<div class="container"> <div class="container">
<header class="header"> <header class="header">
<h1>CG-SELECT</h1> <h1>CG-SELECT</h1>
<img src="images/logoCG.jpg" alt="#" class="header__logo" /> <img src="src/images/logoCG.jpg" alt="#" class="header__logo" />
</header> </header>
</div> </div>
@ -55,5 +55,5 @@
</div> </div>
</div> </div>
</body> </body>
<script type="module" src="index.js"></script> <script type="module" src="/src/index.js"></script>
</html> </html>

View File

@ -3,7 +3,7 @@
"version": "0.0.1", "version": "0.0.1",
"description": "", "description": "",
"scripts": { "scripts": {
"start": "parcel ./src/index.html -p 4500 --open", "start": "parcel ./index.html -p 4500 --open",
"build": "parcel build ./src/index.html" "build": "parcel build ./src/index.html"
}, },
"repository": { "repository": {