Skip to content

Commit

Permalink
Shows all my github followers on about me page
Browse files Browse the repository at this point in the history
  • Loading branch information
Akash Singh committed Mar 9, 2024
1 parent 2c9867e commit a681445
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
1 change: 1 addition & 0 deletions documentation/.env.test
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
REACT_APP_FOLLOWERS_ACCESS_KEY=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
26 changes: 13 additions & 13 deletions documentation/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* LICENSE file in the root directory of this source tree.
*/

require("dotenv").config({path: "./.env"});
require("dotenv").config();

const redirectJson = require("./redirects.json");
const tutorialData = require("./tutorial-units");
Expand Down Expand Up @@ -123,18 +123,18 @@ const siteConfig = {
include: ["**/*.{js}"],
},
],
// [
// 'docusaurus-plugin-dotenv',
// {
// path: "./.env", // The path to your environment variables.
// safe: false, // If false ignore safe-mode, if true load './.env.example', if a string load that file as the sample
// systemvars: false, // Set to true if you would rather load all system variables as well (useful for CI purposes)
// silent: false, // If true, all warnings will be suppressed
// expand: false, // Allows your variables to be "expanded" for reusability within your .env file
// defaults: false, // Adds support for dotenv-defaults. If set to true, uses ./.env.defaults
// ignoreStub: false
// }
// ],
[
'docusaurus-plugin-dotenv',
{
path: "./.env.test", // The path to your environment variables.
safe: false, // If false ignore safe-mode, if true load './.env.example', if a string load that file as the sample
systemvars: false, // Set to true if you would rather load all system variables as well (useful for CI purposes)
silent: false, // If true, all warnings will be suppressed
expand: false, // Allows your variables to be "expanded" for reusability within your .env file
defaults: false, // Adds support for dotenv-defaults. If set to true, uses ./.env.defaults
ignoreStub: false
}
],
async function tailwindcss() {
return {
name: "docusaurus-tailwindcss",
Expand Down

0 comments on commit a681445

Please sign in to comment.