Skip to content

Commit

Permalink
chore: fix project name and url
Browse files Browse the repository at this point in the history
  • Loading branch information
Gugustinette committed Sep 3, 2024
1 parent 9b1b3f3 commit f1b8e70
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ A 3d game starter based on Vite
- Clone the repository

```bash
npx degit fibbojs/starter-3d my-fibbo-game
npx degit fibbojs/starter-3d starter-3d
```

- Install the dependencies

```bash
cd my-fibbo-game
cd starter-3d
npm install
```

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "my-fibbo-game",
"name": "starter-3d",
"type": "module",
"version": "0.0.1",
"private": true,
"author": "John Doe <john.doe@fibbo.js>",
"homepage": "https://johndoe.github.io/my-fibbo-game",
"homepage": "https://johndoe.github.io/starter-3d",
"repository": {
"type": "git",
"url": "git+https://github.com/johndoe/my-fibbo-game.git"
"url": "git+https://github.com/johndoe/starter-3d.git"
},
"bugs": "https://github.com/johndoe/my-fibbo-game/issues",
"bugs": "https://github.com/johndoe/starter-3d/issues",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
Expand Down
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default defineConfig({
wasm(),
topLevelAwait(),
],
base: '/my-fibbo-game',
base: '/starter-3d',
build: {
rollupOptions: {
// Solution found here: https://github.com/dimforge/rapier.js/issues/278
Expand Down

0 comments on commit f1b8e70

Please sign in to comment.