You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
/*
|
|
|
|
|
* pack.ts
|
|
|
|
|
* Copyright (C) 2023 veypi <i@veypi.com>
|
|
|
|
|
* 2023-09-26 20:38
|
|
|
|
|
* Distributed under terms of the MIT license.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import { boot } from 'quasar/wrappers'
|
|
|
|
|
import '@veypi/msg/index.css'
|
|
|
|
|
import { conf } from '@veypi/msg'
|
|
|
|
|
import '../assets/icon.js'
|
|
|
|
|
import '@veypi/oaer/dist/index.css'
|
|
|
|
|
import { Cfg } from '@veypi/oaer'
|
|
|
|
|
|
|
|
|
|
import 'vditor/dist/index.css';
|
|
|
|
|
|
|
|
|
|
conf.timeout = 5000
|
|
|
|
|
|
|
|
|
|
Cfg.host.value = 'http://' + window.location.host
|
|
|
|
|
Cfg.token.value = localStorage.getItem('auth_token') || ''
|
|
|
|
|
Cfg.uuid.value = 'FR9P5t8debxc11aFF'
|
|
|
|
|
|
|
|
|
|
// "async" is optional;
|
|
|
|
|
// more info on params: https://v2.quasar.dev/quasar-cli/boot-files
|
|
|
|
|
export default boot(async (/* { app, router, ... } */) => {
|
|
|
|
|
// something to do
|
|
|
|
|
})
|