Rob Bearman

Results 6 issues of Rob Bearman

The SWR site example specifies `redirects` in `next.config.js` but these don't appear to be working. I'm actually looking for guidance on how to configure those redirects, myself. Ex: `/docs` is...

bug

This impacts the support of math output in markdown files. `remarkMath`/`rehypeKatex` options specified by the app via `mdxOptions` are being ignored. `packages/nextra/src/compile.js` might handle the app's `mdxOptions.rehypePlugins` specification this way:...

Long items wrap incorrectly. ![image](https://user-images.githubusercontent.com/1823198/191129572-e5de6661-637c-4d58-aed2-e7d9f7260e43.png) The addition of `inline-block` to the anchor element (such as at line 96 in toc.tsx) corrects it. ![image](https://user-images.githubusercontent.com/1823198/191129776-b01024fd-63c5-416e-af1b-6df6a5df2bf6.png)

Fixes #844 The lockfile can't currently be regenerated since the resulting build breaks due to TypeScript problems. This is a proposed fix. 1. `rm pnpm-lock.yaml` 2. `pnpm install` Note that...

On a fresh clone of branch `a0e5847`, if I remove `pnpm-lock.yaml` so as to regenerate it and run `pnpm install`, the installation fails. ``` [NEXTRA-ESM] DTS Build start │ [NEXTRA-TYPES]...

Fixes #416 Could we do something like this? We might want a theme flag to avoid the download of `katex.min.css` if a theme-user is not interested in math rendering. By...