Divyansh Singh
Divyansh Singh
> but I wanted to import the search component and as soon as I did that it brought a bunch of extra styles that overrode my own Import the component...
This appears to be fixed in v3-alpha. Tested with repro in #4218 too.
Seems weird. It looks like this on my phone: \ Can you share which Safari and iOS version are you using?
> It looks the same on google chrome for ios. Google Chrome is same as Safari on iOS (uses the same engine). > I am on ios 16.1.1 Seems like...
> That would be nice if the docs kept that grey for night reading. Yeah it's theme color. I don't like it either 😂 https://github.com/vuejs/docs/blob/c5f2a3cdc4f4c4e9e3383418bae0b2a0a766e727/.vitepress/config.ts#L572
Try applying this diff (save it to foo.diff in repo and run `git apply foo.diff`): ```diff diff --git a/netlify.toml b/netlify.toml index 247247d..4d2e490 100644 --- a/netlify.toml +++ b/netlify.toml @@ -1,6 +1,6...
Ah, vite-plugin-dts is trying to run multiple instances of api-extractor concurrently (for each entry file) which are causing the memory issue. So with that patch I'm setting maxConcurrency to 1....
I mean you can try creating an issue/PR. The project is active. Ultimately, it's up to their maintainer. 😅
`TresComponents` type is being stripped from output 👀 utils.d.ts is also broken
Yeah I think this is a limitation of api-extractor. I remember seeing it in their docs that it only works if your project has single entrypoint. rollupTypes option might not...