8 lines
205 B
TypeScript
8 lines
205 B
TypeScript
import { boot } from 'quasar/wrappers'
|
|
|
|
// "async" is optional;
|
|
// more info on params: https://v2.quasar.dev/quasar-cli/boot-files
|
|
export default boot(async ({ app, router }) => {
|
|
// something to do
|
|
})
|