Skip to content

Latest commit

 

History

History
62 lines (47 loc) · 1.09 KB

README.md

File metadata and controls

62 lines (47 loc) · 1.09 KB

BabylonJS Vite TypeScript Project

This is a basic setup for a project using BabylonJS, Vite, and TypeScript.

Prerequisites

  • Node.js
  • npm or yarn

Getting Started

  1. Clone the repository:

    git clone <repository-url>
    cd <repository-directory>
  2. Install dependencies:

    npm install
    # or
    yarn install
  3. Run the development server:

    npm run dev
    # or
    yarn dev

Project Structure

.
├── public
│   └── index.html
├── src
│   ├── assets
│   ├── components
│   ├── App.tsx
│   └── main.ts
├── package.json
├── tsconfig.json
└── vite.config.ts

Scripts

  • dev: Starts the development server.
  • build: Builds the project for production.
  • serve: Serves the production build.

Learn More

License

This project is licensed under the MIT License.