feat: ✨ Aggiunto barra di avanzamento della pagina
This commit is contained in:
parent
1d2f491119
commit
d5a627658a
|
@ -14,6 +14,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@inertiajs/inertia": "^0.10.1",
|
||||
"@inertiajs/progress": "^0.2.6",
|
||||
"@maicol07/inertia-mithril": "^0.4",
|
||||
"@material/card": "^12.0.0",
|
||||
"@material/data-table": "^12.0.0",
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import '../scss/app.scss';
|
||||
import './_material';
|
||||
|
||||
import {InertiaProgress} from '@inertiajs/progress';
|
||||
import {createInertiaApp} from '@maicol07/inertia-mithril';
|
||||
import {waitUntil} from 'async-wait-until';
|
||||
import jQuery from 'jquery';
|
||||
|
@ -14,6 +15,8 @@ window.$ = jQuery;
|
|||
window.jQuery = jQuery;
|
||||
window.m = m;
|
||||
|
||||
InertiaProgress.init();
|
||||
|
||||
// noinspection JSIgnoredPromiseFromCall
|
||||
createInertiaApp({
|
||||
title: title => `${title} - OpenSTAManager`,
|
||||
|
|
Loading…
Reference in New Issue