Compare commits

..

No commits in common. "75fb765019d092bec495fdf2bf2c56936ed05b10" and "8b734f10edd67586442224c1375301c97b7caa4d" have entirely different histories.

3 changed files with 5 additions and 8 deletions

View File

@ -1,4 +0,0 @@
{
"extends": "@parcel/config-default",
"namers": ["parcel-namer-without-hash"]
}

View File

@ -1,7 +1,8 @@
{ {
"name": "resume", "name": "resume",
"version": "1.0.0", "version": "1.0.0",
"source": "src/resume.html", "main": "src/resume.js",
"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="standalone_page.css" /> <link rel="stylesheet" href="/resume.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>