Skip to content

Commit

Permalink
another pass and fix tables
Browse files Browse the repository at this point in the history
  • Loading branch information
joaniefromtheblock committed Jul 13, 2024
1 parent 3b929cc commit bfb9324
Show file tree
Hide file tree
Showing 430 changed files with 3,722 additions and 2,159 deletions.
2 changes: 1 addition & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
presets: [require.resolve("@docusaurus/core/lib/babel/preset")],
}
};
4 changes: 2 additions & 2 deletions dashboard-sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ const sidebar = {
items: [{ type: "autogenerated", dirName: "how-to" }],
},
],
}
};

module.exports = sidebar
module.exports = sidebar;
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
description: Authenticate all requests to Infura with an API key secret.
---

import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
import Tabs from "@theme/Tabs";
import TabItem from "@theme/TabItem";

# API key secret

Expand Down
4 changes: 2 additions & 2 deletions developer-tools/dashboard/how-to/secure-an-api/api-key.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
description: Secure your API key.
---

import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
import Tabs from "@theme/Tabs";
import TabItem from "@theme/TabItem";

# API key

Expand Down
14 changes: 7 additions & 7 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion

require("dotenv").config()
const { themes } = require("prism-react-renderer")
const codeTheme = themes.dracula
const remarkCodesandbox = require("remark-codesandbox")
const isProd = process.env.NODE_ENV === "production"
require("dotenv").config();
const { themes } = require("prism-react-renderer");
const codeTheme = themes.dracula;
const remarkCodesandbox = require("remark-codesandbox");
const isProd = process.env.NODE_ENV === "production";

/** @type {import('@docusaurus/types').Config} */
const config = {
Expand Down Expand Up @@ -360,6 +360,6 @@ const config = {
},
},
}),
}
};

module.exports = config
module.exports = config;
Loading

0 comments on commit bfb9324

Please sign in to comment.