Se quitó el modo oscuro

This commit is contained in:
Juan Felipe Zapata Moreno 2025-08-19 09:02:24 -06:00
parent 84cc2083a5
commit 6917e031ef

View File

@ -22,9 +22,7 @@ window.Notify = new Notify();
window.sessionFresh = new SessionFresh(); window.sessionFresh = new SessionFresh();
window.Swal = Swal; window.Swal = Swal;
window.TwScreen = new TailwindScreen(); window.TwScreen = new TailwindScreen();
window.darkMode = darkMode;
bootTheme();
bootSidebar(); bootSidebar();
createInertiaApp({ createInertiaApp({
@ -34,8 +32,8 @@ createInertiaApp({
title: (title) => `${title} - ${appName}`, title: (title) => `${title} - ${appName}`,
resolve: (name) => resolvePageComponent(`./Pages/${name}.vue`, import.meta.glob('./Pages/**/*.vue')), resolve: (name) => resolvePageComponent(`./Pages/${name}.vue`, import.meta.glob('./Pages/**/*.vue')),
setup({ el, App, props, plugin }) { setup({ el, App, props, plugin }) {
return createApp({ return createApp({
render: () => h(App, props) render: () => h(App, props)
}) })
.use(plugin) .use(plugin)
.use(ZiggyVue, Ziggy) .use(ZiggyVue, Ziggy)