This is a minimal template for a Vulmix project. Check out the Vulmix documentation for more information.
First, install the dependencies:
# npm
npm install
# yarn
yarn install
# bun
bun installThen, start the development server:
# npm
npm run dev
# yarn
yarn dev
# bun
bun devTo build the project for production, run:
# npm
npm run build
# yarn
yarn build
# bun
bun buildThe output will be in the _dist directory.