Package pg can't be external

I am creating a turborepo with two next.js apps, and a db package that uses drizzle-orm, and api package that uses trpc. I have things set up according to the docs, but when I run the web app (pnpm run dev), it error out with the following error:
[email protected]/node_modules/drizzle-orm/node-postgres
Package pg can't be external
│ The request pg matches serverExternalPackages (or the defa
│ ult list).
│ The request could not be resolved by Node.js from the proj
│ ect directory.
│ Packages that should be external need to be installed in t
│ he project directory, so they can be resolved from the out
│ put files.
│ Try to install it into the project directory by running np
│ m install pg from the project directory.
[email protected]/node_modules/drizzle-orm/node-postgres
Package pg can't be external
│ The request pg matches serverExternalPackages (or the defa
│ ult list).
│ The request could not be resolved by Node.js from the proj
│ ect directory.
│ Packages that should be external need to be installed in t
│ he project directory, so they can be resolved from the out
│ put files.
│ Try to install it into the project directory by running np
│ m install pg from the project directory.
I have created a repo for the same, https://github.com/adeshgg/ultimate-monorepo/tree/feat/auth-in-api I am new to turborepo, Is there something that I am missing here?
GitHub
GitHub - adeshgg/ultimate-monorepo at feat/auth-in-api
Contribute to adeshgg/ultimate-monorepo development by creating an account on GitHub.
Solution:
Solved it by add hoisting the pg package in .npmrc file public-hoist-pattern[]=*pg*...
Jump to solution
1 Reply
Solution
Adesh
Adesh2d ago
Solved it by add hoisting the pg package in .npmrc file public-hoist-pattern[]=*pg*

Did you find this page helpful?