Skip to content

Commit

Permalink
fix: svgFixPlugin instead of config
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-mayer committed Oct 24, 2024
1 parent a9ce751 commit 0f08d60
Show file tree
Hide file tree
Showing 6 changed files with 651 additions and 610 deletions.
3 changes: 2 additions & 1 deletion website/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { themes as prismThemes } from "prism-react-renderer";
import type { Config } from "@docusaurus/types";
import type * as Preset from "@docusaurus/preset-classic";
import { tailwindPlugin } from "./plugins/tailwind-config.cts";
import { svgoConfigPlugin } from "./plugins/svgo-config.cts";

const config: Config = {
title: "GoKubeDownscaler",
Expand Down Expand Up @@ -131,7 +132,7 @@ const config: Config = {
darkTheme: prismThemes.dracula,
},
} satisfies Preset.ThemeConfig,
plugins: [tailwindPlugin],
plugins: [svgoConfigPlugin, tailwindPlugin],
};

export default config;
Loading

0 comments on commit 0f08d60

Please sign in to comment.