mirror of
https://github.com/dtomlinson91/anno-production-chain-renderer.git
synced 2025-12-21 22:05:46 +00:00
9 lines
273 B
TypeScript
9 lines
273 B
TypeScript
import { boot } from 'quasar/wrappers';
|
|
import mermaid from 'mermaid';
|
|
|
|
// "async" is optional;
|
|
// more info on params: https://v2.quasar.dev/quasar-cli/boot-files
|
|
export default boot(async (/* { app, router, ... } */) => {
|
|
mermaid.initialize({ startOnLoad: true });
|
|
});
|