Skip to main content
Module

x/test_on_localhost/media-types.ts

Create a localhost server and run tests
Latest
File
export const MEDIA_TYPES: Record<string, string> = { ".md": "text/markdown", ".html": "text/html", ".htm": "text/html", ".json": "application/json", ".map": "application/json", ".txt": "text/plain", ".ts": "text/typescript", ".tsx": "text/tsx", ".js": "application/javascript", ".jsx": "text/jsx", ".gz": "application/gzip", ".wasm": "application/wasm",};export default MEDIA_TYPES;