-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvoid.json
More file actions
39 lines (39 loc) · 1.84 KB
/
void.json
File metadata and controls
39 lines (39 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"$schema": "./node_modules/void/schema.json",
"output": "server",
"worker": {
"compatibility_date": "2026-02-24"
},
"head": {
"htmlAttrs": { "lang": "en" },
"meta": [
{ "charset": "utf-8" },
{ "name": "viewport", "content": "width=device-width, initial-scale=1" },
{ "name": "color-scheme", "content": "light dark" },
{
"name": "description",
"content": "Inspect and debug JavaScript/CSS source map mappings. Upload, paste, or fetch source maps to see how generated code positions map back to original source with interactive segment highlighting."
},
{ "property": "og:title", "content": "Source Map Viewer" },
{
"property": "og:description",
"content": "Interactive tool to inspect and debug source map mappings. See how generated code maps back to original source with segment highlighting and diagnostics."
},
{ "property": "og:type", "content": "website" },
{ "property": "og:url", "content": "https://source-map-viewer.void.app" },
{ "name": "twitter:card", "content": "summary" },
{ "name": "twitter:title", "content": "Source Map Viewer" },
{
"name": "twitter:description",
"content": "Interactive tool to inspect and debug source map mappings. See how generated code maps back to original source."
}
],
"link": [{ "rel": "icon", "type": "image/svg+xml", "href": "/logo.svg" }],
"title": "Source Map Viewer",
"script": [
{
"innerHTML": "if(localStorage.getItem('source-map-viz-theme')==='dark'||(!localStorage.getItem('source-map-viz-theme')&&window.matchMedia('(prefers-color-scheme:dark)').matches)){document.documentElement.classList.add('dark')}if(location.pathname.length>1&&location.pathname!=='/compare'){document.documentElement.classList.add('has-share-slug')}"
}
]
}
}