Cleanup a lot of stuff

I've replaced `lodash` with `lodash-es`, so it can be tree-shaken

`~/modules` is a directory with application modules that run before app is mounted. Useful for configuration, web socket connection, and other stuff

`~/composables` is a directory with our custom composables. Much like `~/utils` but each util is in its own file
This commit is contained in:
Kasper Seweryn 2022-04-18 00:43:58 +02:00 committed by Georg Krause
commit 2b40707f4f
121 changed files with 1808 additions and 1442 deletions

View file

@ -178,7 +178,7 @@
import axios from 'axios'
import $ from 'jquery'
import logger from '@/logging.js'
import logger from '@/logging'
import OrderingMixin from '@/components/mixins/Ordering.vue'
import PaginationMixin from '@/components/mixins/Pagination.vue'