Skip to content

Commit

Permalink
Merge pull request #22 from AzureCosmosDB/sajee_fixes
Browse files Browse the repository at this point in the history
Fixes
  • Loading branch information
sajeetharan authored Oct 8, 2024
2 parents 48c407b + 97f4851 commit 7fd1f0c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 19 deletions.
24 changes: 6 additions & 18 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,27 +144,15 @@ const config = {
// CONFIG: Set presets for chosen theme
presets: [
[
"classic",
/** @type {import('@docusaurus/preset-classic').Options} */
({
// CONFIG: docs = collections of pages, tutorials, documentation
// See: https://docusaurus.io/docs/api/plugins/@docusaurus/plugin-content-docs
// FIXME: TEMPORARILY DISABLE DOCS
// docs: { sidebarPath: require.resolve("./sidebars.js"), },
// docs: false,
docs: false,

// CONFIG: blog = timestamped pages, tags, site feed
// See: https://docusaurus.io/docs/api/plugins/@docusaurus/plugin-content-blog
// FIXME: TEMPORARILY DISABLE BLOG
blog: false,

// CONFIG: theme = currently using `classic`
// See: https://docusaurus.io/docs/api/themes/@docusaurus/theme-classic
"@docusaurus/preset-classic",
{
gtag: {
trackingID: "G-CNSKHL41CT",
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
}),
},
],
],
};
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
"@popperjs/core": "^2.11.8",
"react-helmet": "^6.1.0",
"scheduler": "^0.20.2",
"@docusaurus/plugin-google-gtag": "^2.4.3",
"search-insights": "^2.11.0"
}
}
2 changes: 1 addition & 1 deletion src/components/gallery/ShowcaseCardPanel/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default function ShowcaseCardPanel({
const vectorDatabaseTags = tagObjectsSorted.filter((tag) => tag.type === "VectorDatabase");
const azureTags = tagObjectsSorted.filter((tag) => tag.type === "Azure");
const resourceTypeTags = tagObjectsSorted.filter((tag) => tag.type === "ResourceType");
//console.log("resourceTypeTags", resourceTypeTags);


return (
<>
Expand Down

0 comments on commit 7fd1f0c

Please sign in to comment.