fix yarn compile errors

This commit is contained in:
b1ek 2023-03-21 23:11:33 +10:00
parent 8b734f10ed
commit 52c4b95413
Signed by: blek
GPG Key ID: 14546221E3595D0C
2 changed files with 4 additions and 5 deletions

View File

@ -1,8 +1,7 @@
{ {
"name": "resume", "name": "resume",
"version": "1.0.0", "version": "1.0.0",
"main": "src/resume.js", "source": "src/resume.html",
"source": "src/index.html",
"author": "blek", "author": "blek",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {

View File

@ -2,12 +2,12 @@
<html> <html>
<head> <head>
<title>resume.js</title> <title>resume.js</title>
<meta charset="utf-8"> <meta charset="utf-8" />
<link rel="stylesheet" href="/resume.css"> <link rel="stylesheet" href="standalone_page.css" />
</head> </head>
<body> <body>
<div id="resume_js_app"></div> <div id="resume_js_app"></div>
<script src="/resume.js" type="module"></script> <script src="resume.js" type="module"></script>
</body> </body>
</html> </html>