Dez

Results 11 comments of Dez

I believe this may have been fixed in v6.0.16 which has upgraded the dependency "vue-style-loader": "^4.1.3".

We also came up against a subtle bug with the way this works in ogen. In our case from v1.1.0 on we got this in the response. ``` { "type":...

Just tested the latest commit, looks like the bug has been fixed by reverting to previous behaviour. 👏 > It causes problems if child schema used somewhere else. This makes...

I also tried a fresh OSS install on MacOS and got this error, `Error: ENOENT: no such file or directory, open ... /.docusaurus/orama-search-index-current.json.gz` Also the docs are lacking on how...

Can confirm this is now fixed as of `2.0.20`. **Edit:** Whoops, not really! The docs don't say it specifically but you need to run: `npm run build` first ... then...

@LevGolumov Yeah when I said I confirmed it was fixed I accidentally left in a modified version of the file. I have the working fix in the PR above.

Also I removed the 'Orama AI' section with this css in my project: ```css div[class^="ShowSummaryCTA"] { display: none !important; } ``` But it would be nice for the plugin to...

Need to support explicit ids also: [### Hello World {#my-explicit-id}](https://docusaurus.io/docs/markdown-features/toc#heading-ids) This is how docusaurus does it: [https://github.com/facebook/docusaurus/blob/main/packages/docusaurus-utils/src/markdownUtils.ts](https://github.com/facebook/docusaurus/blob/main/packages/docusaurus-utils/src/markdownUtils.ts) So I'm thinking: - Extract the explicit ID if it exists then strip...

Here is my first attempt: 456fb63fa4bba79972298ff2aecccfd8b138a286 It adds the fragments but for some reason when you click on the search result it doesn't jump down to the fragment id. **Edit**:...

Okay after more investigation it looks like when using `docusaurus start` it works in browser as expected with no network calls, however when using `docusaurus serve` it starts trying to...