ibnu-ja/jetify

Laravel Jetstream Inertia.js + Vite + Vuetify

Installs: 4

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

Language:Vue

dev-master 2022-02-21 14:29 UTC

This package is auto-updated.

Last update: 2024-04-20 06:00:51 UTC


README

Introduction

This package is designed using Vuetify to use the power of material desings, in the starter kit for Laravel Jetstream using Inertia scaffolding and replace Laravel Mix with Vite using Laravel Vite presets. Inspired by Jet-Vuetify

Installation

Use only with fresh Laravel 8/9 installation

First, use composer to install this package

composer require ibnu-ja/jetify

After installing, run artisan command:

php artisan jetify:install

or with teams

php artisan jetify:install --teams

Finalizing Installation

Install Node dependencies and do database migration

npm install
# or with yarn
yarn install
php artisan migrate

Publish Laravel-Vite configuration

php artisan vendor:publish --tag=vite-config

Then, serve the application

npm run dev
# or with yarn
yarn dev