promer94
promer94
Find a workaroud for this problem. For `vue < 2.7` `npx vue-demi-switch 2 vue/dist/vue.runtime.esm.js` could change the entry.
15 comments with 7 nested comments from 103.843ms to 8.049ms - first query from 38.189ms to 6.132ms - cached
# Problem The comments trees are currently stored in the form of the Adjacency List. Query the whole tree would be recursive which might cause performance issue in the future....
For page like this, the frontmatter `title` will be selected as Heading instead of mdx h1. ``` --- type: page title: About. Frontmatter `title` > Text Heading
This is how mdx works. https://mdxjs.com/playground/ ```mdx Shu ding # Shu ding ``` ```jsx /*@jsxRuntime automatic @jsxImportSource react*/ const {Fragment: _Fragment, jsx: _jsx, jsxs: _jsxs} = arguments[0]; function _createMdxContent(props) {...
Could you explain more about what is `ESM issues`. It would be batter if we could know more about the original problem Current changes seems to make it harder for...
I have two problems. Although `nextra-theme-docs` itself is esm, it depends on `next` which is not esm. should we add `"type": "modules"` in this case ? `swr example` is a...
[From turborepo discord by felixmosh](https://discord.com/channels/818588653005176832/920705046147129344/959077126684962827) > The problem with using action/cache is the fact that you most specify a restore key which means it will keep only one cache per...
It seems like that apiurl is only used by `remoteConfig` https://github.com/vercel/turborepo/blob/0ac4e22c46ee5dc41284cb0a2bc2cca0d85b6368/cli/internal/config/config.go#L142 I think It should be assigned to `repoConfig` with `teamId` together https://github.com/vercel/turborepo/blob/0ac4e22c46ee5dc41284cb0a2bc2cca0d85b6368/cli/internal/config/config_file.go#L24-L34
- rollup is usually used for building javascript library rather then application. It has less plugins to support frontend applications development such as dev-server, hot-module-replacement. - [vite](https://github.com/vitejs/vite) is awesome, but...