Skip to content

Commit

Permalink
fix: code checkin
Browse files Browse the repository at this point in the history
  • Loading branch information
ChBasitGill committed Dec 7, 2024
1 parent 1e11398 commit 46e78be
Show file tree
Hide file tree
Showing 6 changed files with 6,268 additions and 2,563 deletions.
57 changes: 54 additions & 3 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ import type * as Preset from "@docusaurus/preset-classic";

const config: Config = {
title: "Basit Jamil",
tagline: "Dinosaurs are cool",
tagline:
"Code in Angular, AG Grid, .NET Core, GitHub, Azure DevOps, MS SQL, Redis, SignalR, RxJS, NgRx, Signals, NX, Tailwind, and More!",
favicon: "img/favicon.ico",

// Set the production url of your site here
Expand All @@ -32,7 +33,54 @@ const config: Config = {
defaultLocale: "en",
locales: ["en"],
},
plugins: [require.resolve("docusaurus-lunr-search"), "plugin-image-zoom"],
plugins: [
require.resolve("docusaurus-lunr-search"),
"plugin-image-zoom",
[
"@docusaurus/plugin-pwa",
{
debug: true,
offlineModeActivationStrategies: [
"appInstalled",
"standalone",
"queryString",
],
pwaHead: [
{
tagName: "link",
rel: "icon",
href: "/img/docusaurus.png",
},
{
tagName: "link",
rel: "manifest",
href: "/manifest.json", // your PWA manifest
},
{
tagName: "meta",
name: "theme-color",
content: "rgb(37, 194, 160)",
},
],
},
],

[
"vercel-analytics",
{
debug: true,
mode: "auto",
},
],
[
"rsdoctor",
{
rsdoctorOptions: {
mode: "lite",
},
},
],
],
presets: [
[
"classic",
Expand Down Expand Up @@ -65,7 +113,10 @@ const config: Config = {
} satisfies Preset.Options,
],
],
themes: ["@saucelabs/theme-github-codeblock"],
themes: ["@docusaurus/theme-mermaid"],
markdown: {
mermaid: true,
},
themeConfig: {
// Replace with your project's social card
image: "img/docusaurus-social-card.jpg",
Expand Down
Loading

0 comments on commit 46e78be

Please sign in to comment.