Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/parasop/poru.git"
"url": "https://github.com/parasop/poru.git"
},
"author": "PARAS",
"license": "MIT",
Expand Down
9 changes: 8 additions & 1 deletion website/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ const config: Config = {
// For GitHub pages deployment, it is often '/<projectName>/'
// Check if it's running inside github actions environment or locally
baseUrl: process.env.previewBaseURL ? process.env.previewBaseURL : ((!process.env.GITHUB_ACTIONS || !process.env.CI) ? '/' : '/poru'),

// Attempt to fix https://github.com/milesj/docusaurus-plugin-typedoc-api/issues/140
githubHost: "github.com",

// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
organizationName: 'parasop', // Usually your GitHub org/user name.
Expand All @@ -41,6 +43,7 @@ const config: Config = {
index: "index.ts",
}
}],
gitRefName: 'v5',
readmes: true,
// minimal: ,
debug: true,
Expand Down Expand Up @@ -73,6 +76,10 @@ const config: Config = {
themeConfig: {
// Replace with your project's social card
image: 'img/poru.png',
colorMode: {
defaultMode: 'dark',
respectPrefersColorScheme: true
},
navbar: {
title: 'Poru',
logo: {
Expand Down
Loading