Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docusaurus v3 Update #237

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 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
6 changes: 3 additions & 3 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
// @ts-check

const lightCodeTheme = require('prism-react-renderer/themes/github')
const darkCodeTheme = require('prism-react-renderer/themes/dracula')
const { themes } = require('prism-react-renderer')
const lightCodeTheme = themes.github
const darkCodeTheme = themes.dracula

const u = require('./docusaurus.config.utils')

Expand Down Expand Up @@ -200,7 +201,6 @@ const config = {
}),

plugins: [
'@orama/plugin-docusaurus',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a blocker, we need to wait for it

Copy link
Contributor Author

@james-kaguru james-kaguru Aug 25, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes I also enoutered that issue where it says there are some missing items. I was able to pinpoint the issue ...I believe it was due a certain command copying docs from say version-folder/* into version-folder/docs . so when you tun the build website again which is designed to look into version-folder/* and not version-folder/docs which now causes a build error since the files in version-folder/docs were not updated. Will recreate this and get back to you

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The fix has been released!

[
// This plugin does not work in dev mode
'@docusaurus/plugin-client-redirects',
Expand Down
Loading
Loading