NFLOddsVis/observablehq.config.js

39 lines
1.6 KiB
JavaScript
Raw Normal View History

2025-01-22 21:34:06 -05:00
// See https://observablehq.com/framework/config for documentation.
export default {
// The apps title; used in the sidebar and webpage titles.
2025-01-23 13:36:08 -05:00
title: "NFLOddsVis",
2025-01-22 21:34:06 -05:00
// The pages and sections in the sidebar. If you dont 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: "Examples",
// pages: [
// {name: "Dashboard", path: "/example-dashboard"},
// {name: "Report", path: "/example-report"}
// ]
// }
// ],
// Content to add to the head of the page, e.g. for a favicon:
2025-02-05 19:34:42 -05:00
head: '<link href="https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap" rel="stylesheet">',
2025-01-22 21:34:06 -05:00
// The path to the source root.
root: "src",
// 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: true, // 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
};