Home / File/ astro.config.mjs — astro Source File

astro.config.mjs — astro Source File

Architecture documentation for astro.config.mjs, a javascript file in the astro codebase. 3 imports, 0 dependents.

File javascript 3 imports

Entity Profile

Dependency Diagram

graph LR
  3a5f421d_f0bb_2f3f_f16f_f602e569ad57["astro.config.mjs"]
  6a08aefe_fe41_8b61_16c0_9fd42b7fe981["mdx"]
  3a5f421d_f0bb_2f3f_f16f_f602e569ad57 --> 6a08aefe_fe41_8b61_16c0_9fd42b7fe981
  dda46faa_14cf_7744_8a09_a6058434f1e9["config"]
  3a5f421d_f0bb_2f3f_f16f_f602e569ad57 --> dda46faa_14cf_7744_8a09_a6058434f1e9
  608b1852_ef7a_8bfc_f4bb_719db1f56d97["vite"]
  3a5f421d_f0bb_2f3f_f16f_f602e569ad57 --> 608b1852_ef7a_8bfc_f4bb_719db1f56d97
  style 3a5f421d_f0bb_2f3f_f16f_f602e569ad57 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import mdx from '@astrojs/mdx';
import { defineConfig } from 'astro/config';
import tailwindcss from "@tailwindcss/vite"

// https://astro.build/config
export default defineConfig({
	integrations: [mdx()],
	vite: {
		plugins: [tailwindcss()],
		build: {
			assetsInlineLimit: 0,
		},
	},
});

Dependencies

  • config
  • mdx
  • vite

Frequently Asked Questions

What does astro.config.mjs do?
astro.config.mjs is a source file in the astro codebase, written in javascript.
What does astro.config.mjs depend on?
astro.config.mjs imports 3 module(s): config, mdx, vite.
Where is astro.config.mjs in the architecture?
astro.config.mjs is located at packages/astro/test/fixtures/tailwindcss/astro.config.mjs (directory: packages/astro/test/fixtures/tailwindcss).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free