1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
export function maybeInjectApp(expr) { var app; try { const path = Bun.routesDir + "/_app"; app = Bun.resolveSync(path, Bun.cwd + "/"); } catch (exception) { return undefined; } return ( <> <import path={app} /> </> ); }