Compare commits

...

2 Commits

Author SHA1 Message Date
b1ek 75fb765019
no hash naming 2023-03-21 23:12:14 +10:00
b1ek 52c4b95413
fix yarn compile errors 2023-03-21 23:11:33 +10:00
3 changed files with 8 additions and 5 deletions

4
.parcelrc Normal file
View File

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

View File

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