import { createApp } from 'vue' import './style.css' import App from './App.vue'; import { PiniaLogger } from "pinia-logger"; import { createPinia } from "pinia"; import FpTsVueUiLib from "fp-ts-vue-ui"; import "fp-ts-vue-ui/dist/style.css"; const app = createApp(App); const pinia = createPinia(); pinia.use( PiniaLogger({ expanded: true, disabled: false, // use a filter to only log certain actions // filter: ({ name }) => name !== "incrementCounter", // alternatively, you can specify the actions you want to log // if undefined, all actions will be logged // actions: ["decrementCounter"], }) ); app.use(pinia); app.use(FpTsVueUiLib); app.mount('#app');