Home / File/ raw-content.json.js — astro Source File

raw-content.json.js — astro Source File

Architecture documentation for raw-content.json.js, a javascript file in the astro codebase. 3 imports, 0 dependents.

Entity Profile

Dependency Diagram

graph LR
  ab93bc83_9df7_927b_d8e6_008c8fc124fa["raw-content.json.js"]
  d7eb2ba5_3381_b199_48b5_3a17eeccc3d7["./basic.md"]
  ab93bc83_9df7_927b_d8e6_008c8fc124fa --> d7eb2ba5_3381_b199_48b5_3a17eeccc3d7
  efb8f72f_149d_c254_2924_7f02e54d03c7["./basic.md?raw"]
  ab93bc83_9df7_927b_d8e6_008c8fc124fa --> efb8f72f_149d_c254_2924_7f02e54d03c7
  cc1f9f18_8c32_2c47_c1fa_7a16d12b5c73["./basic.md?url"]
  ab93bc83_9df7_927b_d8e6_008c8fc124fa --> cc1f9f18_8c32_2c47_c1fa_7a16d12b5c73
  style ab93bc83_9df7_927b_d8e6_008c8fc124fa fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import { compiledContent, rawContent } from './basic.md';
import md from './basic.md?raw';
import url from './basic.md?url';
export async function GET() {
	return Response.json({
		raw: rawContent(),
		compiled: await compiledContent(),
		rawImport: md,
		url,
	});
}

Subdomains

Functions

Dependencies

  • ./basic.md
  • ./basic.md?raw
  • ./basic.md?url

Frequently Asked Questions

What does raw-content.json.js do?
raw-content.json.js is a source file in the astro codebase, written in javascript. It belongs to the IntegrationAdapters domain, SsrAdapters subdomain.
What functions are defined in raw-content.json.js?
raw-content.json.js defines 1 function(s): GET.
What does raw-content.json.js depend on?
raw-content.json.js imports 3 module(s): ./basic.md, ./basic.md?raw, ./basic.md?url.
Where is raw-content.json.js in the architecture?
raw-content.json.js is located at packages/astro/test/fixtures/astro-markdown/src/pages/raw-content.json.js (domain: IntegrationAdapters, subdomain: SsrAdapters, directory: packages/astro/test/fixtures/astro-markdown/src/pages).

Analyze Your Own Codebase

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

Try Supermodel Free