File tree 2 files changed +4
-0
lines changed
stubs/inertia/resources/js
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -270,6 +270,7 @@ protected function installInertiaStack()
270
270
return [
271
271
'@inertiajs/inertia ' => '^0.8.4 ' ,
272
272
'@inertiajs/inertia-vue3 ' => '^0.3.5 ' ,
273
+ '@inertiajs/progress ' => '^0.2.4 ' ,
273
274
'@tailwindcss/forms ' => '^0.2.1 ' ,
274
275
'@tailwindcss/typography ' => '^0.3.0 ' ,
275
276
'postcss-import ' => '^12.0.1 ' ,
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ require('./bootstrap');
3
3
// Import modules...
4
4
import { createApp , h } from 'vue' ;
5
5
import { App as InertiaApp , plugin as InertiaPlugin } from '@inertiajs/inertia-vue3' ;
6
+ import { InertiaProgress } from '@inertiajs/progress' ;
6
7
7
8
const el = document . getElementById ( 'app' ) ;
8
9
@@ -16,3 +17,5 @@ createApp({
16
17
. mixin ( { methods : { route } } )
17
18
. use ( InertiaPlugin )
18
19
. mount ( el ) ;
20
+
21
+ InertiaProgress . init ( { color : '#4B5563' } ) ;
You can’t perform that action at this time.
0 commit comments