Skip to content

Commit c1f1fa0

Browse files
committed
use inertia progress
1 parent 12d5e98 commit c1f1fa0

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/Console/InstallCommand.php

+1
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,7 @@ protected function installInertiaStack()
270270
return [
271271
'@inertiajs/inertia' => '^0.8.4',
272272
'@inertiajs/inertia-vue3' => '^0.3.5',
273+
'@inertiajs/progress' => '^0.2.4',
273274
'@tailwindcss/forms' => '^0.2.1',
274275
'@tailwindcss/typography' => '^0.3.0',
275276
'postcss-import' => '^12.0.1',

stubs/inertia/resources/js/app.js

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ require('./bootstrap');
33
// Import modules...
44
import { createApp, h } from 'vue';
55
import { App as InertiaApp, plugin as InertiaPlugin } from '@inertiajs/inertia-vue3';
6+
import { InertiaProgress } from '@inertiajs/progress';
67

78
const el = document.getElementById('app');
89

@@ -16,3 +17,5 @@ createApp({
1617
.mixin({ methods: { route } })
1718
.use(InertiaPlugin)
1819
.mount(el);
20+
21+
InertiaProgress.init({ color: '#4B5563' });

0 commit comments

Comments
 (0)