-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathobservablehq.config.ts
34 lines (32 loc) · 1.29 KB
/
observablehq.config.ts
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
// See https://observablehq.com/framework/config for documentation.
export default {
// The project’s title; used in the sidebar and webpage titles.
title: "Mosaic + Framework",
// The pages and sections in the sidebar. If you don’t specify this option,
// all pages will be listed in alphabetical order. Listing pages explicitly
// lets you organize them into sections and have unlisted pages.
pages: [
{
name: "Example Articles",
pages: [
{name: "Flight Delays", path: "/flight-delays"},
{name: "NYC Taxi Rides", path: "/nyc-taxi-rides"},
{name: "Gaia Star Catalog", path: "/gaia-star-catalog"},
{name: "Observable Latency", path: "/observable-latency"},
]
},
{
name: "Implementation Notes",
pages: [
{name: "Data Loading with DuckDB", path: "/data-loading"},
{name: "Mosaic & DuckDB-WASM", path: "/mosaic-duckdb-wasm"}
]
}
],
// Some additional configuration options and their defaults:
// theme: "default", // try "light", "dark", "slate", etc.
style: "style.css",
footer: `<a href="https://idl.uw.edu/">Interactive Data Lab, University of Washington</a>`,
toc: false, // whether to show the table of contents
pager: true, // whether to show previous & next links in the footer
};