Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | /// <reference types="vite/client" /> /** * blong-marine/browser.ts — Marine biology shared realm entry point. * * Auto-discovers model handlers (marineCoralModel, etc.) and the fixture handler * (marineFixture) from the `meta/` folder, plus the forwarding orchestrator. * * Consumed by suites that want the marine biology domain: * * // browser.ts * async function marine() { * return import('@feasibleone/blong-marine/browser.ts'); * } */ import {realm} from '@feasibleone/blong'; export default realm(() => ({ url: import.meta.url, children: globalThis.window ? import.meta.glob(['./meta/**/*.ts', './browser/orchestrator/**/*.ts']) : ['./meta', './browser/orchestrator'], config: { default: { meta: true, orchestrator: true, }, }, })); |