adds correct path for js and css from view

This commit is contained in:
Joseph Ditton 2021-12-08 18:06:50 -07:00
parent 5c700ff0ea
commit 68384d7e1d

View File

@ -1,9 +1,9 @@
<html>
<head>
<link rel="stylesheet" href="index.css" />
<link rel="stylesheet" href="/index.css" />
</head>
<body>
<div id="app" />
<script src="index.js"></script>
<script src="/index.js"></script>
</body>
</html>