traefik/webui/src/boot/_globals.js
2024-02-26 15:02:04 +01:00

10 lines
207 B
JavaScript

import { APP } from '../_helpers/APP'
import Boot from '../_middleware/Boot'
export default async ({ app, router, store }) => {
app.use(Boot)
APP.root = app
APP.router = router
APP.store = store
}