start vite app

To start a Vite app using Lua, follow these steps:

  1. Install Vite globally using npm:
npm install -g create-vite
  1. Create a new Vite app using the Lua template:
create-vite my-lua-app lua
  1. Navigate into the newly created app directory:
cd my-lua-app
  1. Install dependencies using npm or yarn:
npm install
# or
yarn
  1. Start the Vite development server:
npm run dev
# or
yarn dev

After completing these steps, your Vite app using Lua will be up and running, and you can start developing your application.