35 lines
1.3 KiB
JavaScript
35 lines
1.3 KiB
JavaScript
// See https://observablehq.com/framework/config for documentation.
|
||
export default {
|
||
// The app’s title; used in the sidebar and webpage titles.
|
||
title: "/vrg/ Archive",
|
||
|
||
pages: [
|
||
{ name: "Thread Browser", path: "thread-browser" },
|
||
{ name: "Substring Search", path: "substring-search" },
|
||
{ name: "Full Text Search", path: "full-text-search" },
|
||
],
|
||
|
||
// Content to add to the head of the page, e.g. for a favicon:
|
||
head: '<link rel="icon" href="observable.png" type="image/png" sizes="32x32">',
|
||
|
||
// The path to the source root.
|
||
root: "src",
|
||
|
||
duckdb: {
|
||
extensions: ["fts"],
|
||
},
|
||
|
||
// Some additional configuration options and their defaults:
|
||
// theme: "default", // try "light", "dark", "slate", etc.
|
||
// header: "", // what to show in the header (HTML)
|
||
// footer: "Built with Observable.", // what to show in the footer (HTML)
|
||
// sidebar: true, // whether to show the sidebar
|
||
// toc: true, // whether to show the table of contents
|
||
pager: false, // whether to show previous & next links in the footer
|
||
// output: "dist", // path to the output root for build
|
||
// search: true, // activate search
|
||
// linkify: true, // convert URLs in Markdown to links
|
||
// typographer: false, // smart quotes and other typographic improvements
|
||
// preserveExtension: false, // drop .html from URLs
|
||
// preserveIndex: false, // drop /index from URLs
|
||
};
|