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",
"version": "1.0.0",
"source": "src/resume.html",
"main": "src/resume.js",
"source": "src/index.html",
"author": "blek",
"license": "MIT",
"devDependencies": {

View File

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