Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ojvribeiro/vulmix-starter-template
Starter template for Vulmix
https://github.com/ojvribeiro/vulmix-starter-template
laravel-mix starter-template template vue vue3 vulmix
Last synced: 3 days ago
JSON representation
Starter template for Vulmix
- Host: GitHub
- URL: https://github.com/ojvribeiro/vulmix-starter-template
- Owner: ojvribeiro
- Created: 2022-10-04T07:22:31.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-16T21:28:05.000Z (4 months ago)
- Last Synced: 2024-11-22T21:49:32.855Z (2 months ago)
- Topics: laravel-mix, starter-template, template, vue, vue3, vulmix
- Language: TypeScript
- Homepage: https://vulmix.dev
- Size: 1000 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vulmix minimal template
This is a minimal template for a Vulmix project. Check out the [Vulmix documentation](https://vulmix.dev/guide/get-started) for more information.
## Setup
First, install the dependencies:
```bash
# npm
npm install# yarn
yarn install# bun
bun install
```Then, start the development server:
```bash
# npm
npm run dev# yarn
yarn dev# bun
bun dev
```## Build
To build the project for production, run:
```bash
# npm
npm run build# yarn
yarn build# bun
bun build
```The output will be in the `_dist` directory.