Skip to content

Commit

Permalink
fix: use relative import
Browse files Browse the repository at this point in the history
  • Loading branch information
Rexogamer committed Feb 3, 2025
1 parent eaf4134 commit 7ed2e29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/build-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ jobs:
run: yarn web-release
- name: Set up Pages
uses: actions/configure-pages@v5
- name: hmmm
run: ls ./dist && ls ./dist/web
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<meta name="viewport" content="width=device-width" />
<title>Clerotri Beta</title>
<style></style>
<link rel="stylesheet" href="/public/index.css" />
<link rel="stylesheet" href="./public/index.css" />
</head>
<body>
<div id="root"></div>
<script src="/index.web.js" type="module"></script>
<script src="./index.web.js" type="module"></script>
</body>
</html>

0 comments on commit 7ed2e29

Please sign in to comment.