astro.config.mjs — astro Source File
Architecture documentation for astro.config.mjs, a javascript file in the astro codebase. 6 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 8360fa00_b98e_5b92_a437_3573548a12af["astro.config.mjs"] 0fdd4779_1d21_90e2_0116_3edba4f23d0d["markdown-plugins.mjs"] 8360fa00_b98e_5b92_a437_3573548a12af --> 0fdd4779_1d21_90e2_0116_3edba4f23d0d f61a176d_f118_a4ea_8afe_fa06e3c553e7["rehypeReadingTime"] 8360fa00_b98e_5b92_a437_3573548a12af --> f61a176d_f118_a4ea_8afe_fa06e3c553e7 8b5b8da3_c6ca_742e_0326_9df9e41b0909["remarkDescription"] 8360fa00_b98e_5b92_a437_3573548a12af --> 8b5b8da3_c6ca_742e_0326_9df9e41b0909 ea618e8e_ef21_424e_6a32_f26be8be805e["remarkTitle"] 8360fa00_b98e_5b92_a437_3573548a12af --> ea618e8e_ef21_424e_6a32_f26be8be805e b05fd4c1_a3ee_3301_adcd_43b49bae78f1["mdx"] 8360fa00_b98e_5b92_a437_3573548a12af --> b05fd4c1_a3ee_3301_adcd_43b49bae78f1 3b10c06c_a805_be1f_3a3d_1f00ea858ef5["config"] 8360fa00_b98e_5b92_a437_3573548a12af --> 3b10c06c_a805_be1f_3a3d_1f00ea858ef5 style 8360fa00_b98e_5b92_a437_3573548a12af fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import mdx from '@astrojs/mdx';
import { defineConfig } from 'astro/config';
import { rehypeReadingTime, remarkDescription, remarkTitle } from './src/markdown-plugins.mjs';
// https://astro.build/config
export default defineConfig({
site: 'https://astro.build/',
integrations: [mdx({
remarkPlugins: [remarkTitle, remarkDescription],
rehypePlugins: [rehypeReadingTime],
})],
});
Domain
Dependencies
Source
Frequently Asked Questions
What does astro.config.mjs do?
astro.config.mjs is a source file in the astro codebase, written in javascript. It belongs to the CoreAstro domain.
What does astro.config.mjs depend on?
astro.config.mjs imports 6 module(s): config, markdown-plugins.mjs, mdx, rehypeReadingTime, remarkDescription, remarkTitle.
Where is astro.config.mjs in the architecture?
astro.config.mjs is located at packages/integrations/mdx/test/fixtures/mdx-frontmatter-injection/astro.config.mjs (domain: CoreAstro, directory: packages/integrations/mdx/test/fixtures/mdx-frontmatter-injection).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free