solid-start
solid-start copied to clipboard
Remove hardcoded `node_modules`
Not all package managers use node_modules as target folder to save modules.
An example is yarn Berry, with Plug'n'Play enabled (pnp loader), that use ./yarn/cache or global cache folder instead of node_modules one.
All absolute imports to relative imports: Example for packages/start/vite/index.d.ts:
- import { Plugin } from "node_modules/vite";
+ import { Plugin } from "vite";
Yeah this is super strange. Maybe it was an auto code import? @nksaraf
@ryansolid @nksaraf node_modules come back.
@ryansolid @nksaraf can this issue be reopened?