1
0
mirror of https://github.com/axllent/mailpit.git synced 2025-03-23 21:50:56 +02:00
Júnior Messias 4cfde7f947
Theme toggler (#136)
Add toggler to change theme (light, dark, auto)
2023-06-30 17:13:12 +12:00

9 lines
239 B
JavaScript

import { createApp } from 'vue';
import App from './App.vue';
import "./assets/styles.scss";
import "../../node_modules/bootstrap-icons/font/bootstrap-icons.scss";
import "bootstrap";
import "./color-modes";
createApp(App).mount('#app');