npm install
npm run dev
-- you will see the console output stucked- go to
./src/app-meta.entity.ts
, remove theapp
field and its coresponding imports - re-run
npm run dev
you will see the server get booted up
app.entity.ts
and app-meta.entity.ts
importing each other to build many-to-many relationship (which is really common in typeorm or in any kinds of ORM), Vite SSR load module function seems cant figure out how to build the modGraph in this case.
I have no idea how to solve it :C