_app.ts — astro Source File
Architecture documentation for _app.ts, a typescript file in the astro codebase. 3 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR ae33a651_dee2_a607_3bf6_738f58f7cb3e["_app.ts"] 45786f6b_6ecd_f3ac_022b_b3f4108bdfe0["../components/Bar.vue"] ae33a651_dee2_a607_3bf6_738f58f7cb3e --> 45786f6b_6ecd_f3ac_022b_b3f4108bdfe0 3d2ad41d_c805_dee3_3c86_3a3563b17a57["../components/Baz.vue"] ae33a651_dee2_a607_3bf6_738f58f7cb3e --> 3d2ad41d_c805_dee3_3c86_3a3563b17a57 58645bbc_6680_4e2a_38e9_3e4f34edbed5["vue"] ae33a651_dee2_a607_3bf6_738f58f7cb3e --> 58645bbc_6680_4e2a_38e9_3e4f34edbed5 style ae33a651_dee2_a607_3bf6_738f58f7cb3e fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import type { App } from 'vue'
import Bar from '../components/Bar.vue'
import Baz from '../components/Baz.vue'
export default async function setup(app: App) {
app.component('Bar', Bar);
await new Promise(resolve => setTimeout(resolve, 250));
app.component('Baz', Baz);
}
Domain
Subdomains
Functions
Dependencies
- ../components/Bar.vue
- ../components/Baz.vue
- vue
Source
Frequently Asked Questions
What does _app.ts do?
_app.ts is a source file in the astro codebase, written in typescript. It belongs to the CoreAstro domain, CoreMiddleware subdomain.
What functions are defined in _app.ts?
_app.ts defines 1 function(s): setup.
What does _app.ts depend on?
_app.ts imports 3 module(s): ../components/Bar.vue, ../components/Baz.vue, vue.
Where is _app.ts in the architecture?
_app.ts is located at packages/integrations/vue/test/fixtures/app-entrypoint-async/src/pages/_app.ts (domain: CoreAstro, subdomain: CoreMiddleware, directory: packages/integrations/vue/test/fixtures/app-entrypoint-async/src/pages).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free