Files
anno-production-chain-renderer/src/boot/mermaid.ts
2022-09-21 02:11:53 +01:00

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 });
});