Matt Chinander
Matt Chinander
@MaximeLozach Did you ever get this resolved? I'm running into this same issue. Seems this plugin doesn't work with symlinked node_modules packages.
I ended up forking the package and using the `dereference` feature of `fs.copySync` to copy the symlinked dependencies. ```typescript fs.copySync( path.resolve('node_modules'), path.resolve(path.join(BUILD_FOLDER, 'node_modules')), { dereference: true, } ) ``` Ironically,...
Things that resolved it for me with React 18: - Latest version of `react-modal` (3.16.1) - Latest version of `@types/react-modal` (3.13.1) - Removed node_modules - Removed lock file - Reinstall...
@daihere1993 I am running into the same problem in my Nx repo with vite 5.1.x and vitest 1.3.x. In the workaround you suggested, that is the exact structure of the...
@daihere1993 Ah, apologies, I misread the `extends` in your original post which caused my confusion. Thanks for pointing that out. Makes sense.
> can you explain that a bit more this is not a action able itm ? i need code samples and what you expect from that @lemanschik Sure thing! We...
Noticing this too on v16. Downgraded and pinned to v15.11.0 to get our CI/CD pipeline for deployments working again.
Running into this issue as well for multiple apps on Render.com.
> @chinanderm Is this still an issue with the new vite remix plugin and v4 of the VE vite plugin? We've made sure it works correctly with tsconfig paths. @askoufis...
I'm encountering the same issue.