Skip to content

Commit 6a44af9

Browse files
committed
Github Pages update
1 parent 2de3994 commit 6a44af9

File tree

4 files changed

+27
-20
lines changed

4 files changed

+27
-20
lines changed

.github/workflows/deploy.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ permissions:
1111
jobs:
1212
build-and-deploy:
1313
runs-on: ubuntu-latest
14+
1415
steps:
1516
- name: Checkout 🛎️
1617
uses: actions/checkout@v3
@@ -30,5 +31,5 @@ jobs:
3031
- name: Deploy 🚀
3132
uses: JamesIves/github-pages-deploy-action@v4
3233
with:
33-
folder: dist # The folder the action should deploy
34-
branch: gh-pages # The branch the action should deploy to
34+
folder: dist # The folder to deploy
35+
branch: gh-pages # Deploy to gh-pages branch

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
</head>
99
<body>
1010
<div id="root"></div>
11-
<script type="module" src="/src/main.jsx"></script>
11+
<script type="module" src="./src/main.jsx"></script>
1212
</body>
1313
</html>

package-lock.json

+21-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"@mantine/hooks": "^7.17.1",
1919
"@tabler/icons-react": "^3.31.0",
2020
"gsap": "^3.12.5",
21-
"react": "^19.0.0",
22-
"react-dom": "^19.0.0",
21+
"react": "^18.2.0",
22+
"react-dom": "^18.2.0",
2323
"react-router-dom": "^7.3.0"
2424
},
2525
"devDependencies": {

0 commit comments

Comments
 (0)