This is a basic setup for a project using BabylonJS, Vite, and TypeScript.
- Node.js
- npm or yarn
-
Clone the repository:
git clone <repository-url> cd <repository-directory>
-
Install dependencies:
npm install # or yarn install
-
Run the development server:
npm run dev # or yarn dev
.
├── public
│ └── index.html
├── src
│ ├── assets
│ ├── components
│ ├── App.tsx
│ └── main.ts
├── package.json
├── tsconfig.json
└── vite.config.ts
dev
: Starts the development server.build
: Builds the project for production.serve
: Serves the production build.
This project is licensed under the MIT License.