Skip to content

Commit

Permalink
Fix: use relative pathing
Browse files Browse the repository at this point in the history
  • Loading branch information
bigtimebuddy committed Jan 10, 2024
1 parent a5efed6 commit 3fc49d9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ Below is a list of games that are currently available in this repository. Each g

- Bubbo Bubbo
- [Code](/bubbo-bubbo/README.md)
- [Play](https://bubbo-bubbo.netlify.app/)
- [Play](https://pixijs.io/open-games/bubbo-bubbo)

- Puzzling Potions
- [Code](/puzzling-potions/README.md)
- [Play](https://puzzling-potions.netlify.app/)
- [Play](https://pixijs.io/open-games/puzzling-potions)

## Tools

Expand Down
2 changes: 1 addition & 1 deletion bubbo-bubbo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"start": "vite --open",
"clean": "rimraf dist/* public/* .assetpack/*",
"prebuild": "run-s clean format:check lint assets types",
"build": "vite build",
"build": "vite build --base \"./\"",
"assets": "assetpack",
"prepreview": "run-s build",
"preview": "vite preview --open",
Expand Down
1 change: 1 addition & 0 deletions puzzling-potions/vite.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export default {
base: './',
server: {
host: true,
port: 8000
Expand Down

0 comments on commit 3fc49d9

Please sign in to comment.