Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add TypeScript support and configuration files #420

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

[![OpenSauced](https://github.com/open-sauced/assets/blob/main/logos/logo-on-dark.png)](https://opensauced.pizza)

# 🍕 OpenSauced Docs 🍕
# 🍕 OpenSauced Docs 🍕
>
> The path to your next Open Source contribution

[![Code Size](https://img.shields.io/github/languages/code-size/open-sauced/docs.opensauced.pizza?style=flat)](https://github.com/open-sauced/docs.opensauced.pizza/pulse)
Expand All @@ -13,7 +14,6 @@
[![Twitter](https://img.shields.io/twitter/follow/saucedopen?label=Follow&style=social)](https://twitter.com/saucedopen)
</div>


## 🤝 Contributing

We encourage you to contribute to OpenSauced! All contributors are required to abide by our [Code of Conduct](https://github.com/open-sauced/.github/blob/main/CODE_OF_CONDUCT.md). Please check out the [Contributing guide](https://opensauced.pizza/docs/contributing/introduction-to-contributing/) for guidelines about how to proceed with your contribution.
Expand Down
55 changes: 28 additions & 27 deletions docusaurus.config.js → docusaurus.config.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
const { themes } = require('prism-react-renderer');
// https://docusaurus.io/docs/typescript-support
import type { Config } from "@docusaurus/types";
import type * as Preset from "@docusaurus/preset-classic";
import { themes } from "prism-react-renderer";

const lightCodeTheme = themes.github;
const darkCodeTheme = themes.dracula;
// This is defined in the Netlify environment variables on the Netlify UI
const { ADD_SLASH_DOCS_TO_URL } = process.env;

/** @type {import('@docusaurus/types').DocusaurusConfig} */
module.exports = {
const config: Config = {
title: "OpenSauced",
tagline: "The path to your next Open Source contribution",
url: ADD_SLASH_DOCS_TO_URL ? "https://opensauced.pizza" : "https://docs.opensauced.pizza",
Expand All @@ -17,14 +20,11 @@ module.exports = {
projectName: "docs.opensauced.pizza", // Usually your repo name.
trailingSlash: true,
themeConfig: {
metadata: [{name: 'keywords', content: 'open source, open source insights, OSS'}],
metadata: [{ name: "keywords", content: "open source, open source insights, OSS" }],
algolia: {
appId: "RH1WG3CUDK",
apiKey: "ea723aba7d69f2f36feac9292f2d2fe9",
indexName: "dev_docs_index",
algoliaOptions: { facetFilters: ["type:$TYPE"] },
debug: false,
placeholder: "Search OpenSauced Docs",
},
navbar: {
logo: {
Expand Down Expand Up @@ -66,9 +66,9 @@ module.exports = {
position: "right",
},
{
to: "community-resources",
label: "Community Resources",
position: "left"
to: "community-resources",
label: "Community Resources",
position: "left",
},
],
},
Expand Down Expand Up @@ -125,9 +125,8 @@ module.exports = {
},
{
label: "Watch our feature demos",
href: "https://www.youtube.com/playlist?list=PLHyZ0Wz_A44VRlE-YS9me5qxDNRgK5T3H"
}

href: "https://www.youtube.com/playlist?list=PLHyZ0Wz_A44VRlE-YS9me5qxDNRgK5T3H",
},
],
},
],
Expand All @@ -137,7 +136,7 @@ module.exports = {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
},
},
} satisfies Preset.ThemeConfig,
presets: [
[
"@docusaurus/preset-classic",
Expand All @@ -151,21 +150,21 @@ module.exports = {
showLastUpdateAuthor: true,
showLastUpdateTime: true,
},
blog: {
blogSidebarTitle: 'All posts',
blogSidebarCount: 'ALL',
showReadingTime: true,
routeBasePath: '/community-resources',
path: './blog',
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
blog: {
blogSidebarTitle: "All posts",
blogSidebarCount: "ALL",
showReadingTime: true,
routeBasePath: "/community-resources",
path: "./blog",
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
sitemap: {
changefreq: "weekly",
priority: 0.5,
},
},
} satisfies Preset.Options,
],
],
plugins: [
Expand Down Expand Up @@ -228,8 +227,10 @@ module.exports = {
"posthog-docusaurus",
{
apiKey: "phc_Uxc9yqu1fvo0DmTMYxWAHUmh8vEzvYcB1UV3xbzUG6I",
enableInDevelopment: true
}
]
enableInDevelopment: true,
},
],
],
};

export default config;
Loading
Loading